From b1e7452cd310ead7e6379f694d660e935641e596 Mon Sep 17 00:00:00 2001 From: Divy Srivastava Date: Tue, 12 Oct 2021 19:18:08 +0530 Subject: [PATCH] feat(ext/crypto): support importing/exporting raw AES keys (#12392) --- ext/crypto/00_crypto.js | 278 + tools/wpt/expectation.json | 10798 +++-------------------------------- 2 files changed, 1026 insertions(+), 10050 deletions(-) diff --git a/ext/crypto/00_crypto.js b/ext/crypto/00_crypto.js index 5065df293f..4c2f3e41cd 100644 --- a/ext/crypto/00_crypto.js +++ b/ext/crypto/00_crypto.js @@ -110,6 +110,10 @@ "HMAC": "HmacImportParams", "HKDF": null, "PBKDF2": null, + "AES-CTR": null, + "AES-CBC": null, + "AES-GCM": null, + "AES-KW": null, }, "deriveBits": { "HKDF": "HkdfParams", @@ -1370,6 +1374,228 @@ // 10. return key; } + case "AES-CTR": { + // 1. + if ( + ArrayPrototypeFind( + keyUsages, + (u) => + !ArrayPrototypeIncludes([ + "encrypt", + "decrypt", + "wrapKey", + "unwrapKey", + ], u), + ) !== undefined + ) { + throw new DOMException("Invalid key usages", "SyntaxError"); + } + + // 2. + switch (format) { + case "raw": { + // 2. + if ( + !ArrayPrototypeIncludes([128, 192, 256], keyData.byteLength * 8) + ) { + throw new DOMException("Invalid key length", "Datarror"); + } + + break; + } + default: + throw new DOMException("Not implemented", "NotSupportedError"); + } + + const handle = {}; + WeakMapPrototypeSet(KEY_STORE, handle, { + type: "raw", + data: keyData, + }); + + // 4-7. + const algorithm = { + name: "AES-CBC", + length: keyData.byteLength * 8, + }; + + const key = constructKey( + "secret", + false, + usageIntersection(keyUsages, recognisedUsages), + algorithm, + handle, + ); + + // 8. + return key; + } + case "AES-CBC": { + // 1. + if ( + ArrayPrototypeFind( + keyUsages, + (u) => + !ArrayPrototypeIncludes([ + "encrypt", + "decrypt", + "wrapKey", + "unwrapKey", + ], u), + ) !== undefined + ) { + throw new DOMException("Invalid key usages", "SyntaxError"); + } + + // 2. + switch (format) { + case "raw": { + // 2. + if ( + !ArrayPrototypeIncludes([128, 192, 256], keyData.byteLength * 8) + ) { + throw new DOMException("Invalid key length", "Datarror"); + } + + break; + } + default: + throw new DOMException("Not implemented", "NotSupportedError"); + } + + const handle = {}; + WeakMapPrototypeSet(KEY_STORE, handle, { + type: "raw", + data: keyData, + }); + + // 4-7. + const algorithm = { + name: "AES-CTR", + length: keyData.byteLength * 8, + }; + + const key = constructKey( + "secret", + false, + usageIntersection(keyUsages, recognisedUsages), + algorithm, + handle, + ); + + // 8. + return key; + } + case "AES-GCM": { + // 1. + if ( + ArrayPrototypeFind( + keyUsages, + (u) => + !ArrayPrototypeIncludes([ + "encrypt", + "decrypt", + "wrapKey", + "unwrapKey", + ], u), + ) !== undefined + ) { + throw new DOMException("Invalid key usages", "SyntaxError"); + } + + // 2. + switch (format) { + case "raw": { + // 2. + if ( + !ArrayPrototypeIncludes([128, 192, 256], keyData.byteLength * 8) + ) { + throw new DOMException("Invalid key length", "Datarror"); + } + + break; + } + default: + throw new DOMException("Not implemented", "NotSupportedError"); + } + + const handle = {}; + WeakMapPrototypeSet(KEY_STORE, handle, { + type: "raw", + data: keyData, + }); + + // 4-7. + const algorithm = { + name: "AES-GCM", + length: keyData.byteLength * 8, + }; + + const key = constructKey( + "secret", + false, + usageIntersection(keyUsages, recognisedUsages), + algorithm, + handle, + ); + + // 8. + return key; + } + case "AES-KW": { + // 1. + if ( + ArrayPrototypeFind( + keyUsages, + (u) => + !ArrayPrototypeIncludes([ + "wrapKey", + "unwrapKey", + ], u), + ) !== undefined + ) { + throw new DOMException("Invalid key usages", "SyntaxError"); + } + + // 2. + switch (format) { + case "raw": { + // 2. + if ( + !ArrayPrototypeIncludes([128, 192, 256], keyData.byteLength * 8) + ) { + throw new DOMException("Invalid key length", "Datarror"); + } + + break; + } + default: + throw new DOMException("Not implemented", "NotSupportedError"); + } + + const handle = {}; + WeakMapPrototypeSet(KEY_STORE, handle, { + type: "raw", + data: keyData, + }); + + // 4-7. + const algorithm = { + name: "AES-KW", + length: keyData.byteLength * 8, + }; + + const key = constructKey( + "secret", + false, + usageIntersection(keyUsages, recognisedUsages), + algorithm, + handle, + ); + + // 8. + return key; + } default: throw new DOMException("Not implemented", "NotSupportedError"); } @@ -1609,6 +1835,58 @@ throw new DOMException("Not implemented", "NotSupportedError"); } } + case "AES-CTR": { + switch (format) { + // 2. + case "raw": { + // 1. + const data = innerKey.data; + // 2. + return data.buffer; + } + default: + throw new DOMException("Not implemented", "NotSupportedError"); + } + } + case "AES-CBC": { + switch (format) { + // 2. + case "raw": { + // 1. + const data = innerKey.data; + // 2. + return data.buffer; + } + default: + throw new DOMException("Not implemented", "NotSupportedError"); + } + } + case "AES-GCM": { + switch (format) { + // 2. + case "raw": { + // 1. + const data = innerKey.data; + // 2. + return data.buffer; + } + default: + throw new DOMException("Not implemented", "NotSupportedError"); + } + } + case "AES-KW": { + switch (format) { + // 2. + case "raw": { + // 1. + const data = innerKey.data; + // 2. + return data.buffer; + } + default: + throw new DOMException("Not implemented", "NotSupportedError"); + } + } // TODO(@littledivy): ECDSA default: throw new DOMException("Not implemented", "NotSupportedError"); diff --git a/tools/wpt/expectation.json b/tools/wpt/expectation.json index 79723b11a9..2f71688f6b 100644 --- a/tools/wpt/expectation.json +++ b/tools/wpt/expectation.json @@ -8,15 +8,6 @@ "ecdh_keys.https.any.html": false, "ecdh_keys.https.any.worker.html": false, "hkdf.https.any.html?1-1000": [ - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", @@ -26,33 +17,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", @@ -62,33 +26,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", @@ -98,33 +35,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", @@ -134,33 +44,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", @@ -170,33 +53,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", @@ -206,33 +62,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", @@ -242,33 +71,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", @@ -278,33 +80,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", @@ -314,33 +89,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", @@ -350,33 +98,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", @@ -386,33 +107,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", @@ -422,33 +116,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", @@ -458,33 +125,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage" ], @@ -496,33 +136,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", @@ -532,33 +145,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", @@ -568,33 +154,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", @@ -604,33 +163,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", @@ -640,33 +172,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", @@ -676,33 +181,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", @@ -712,33 +190,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", @@ -748,33 +199,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", @@ -784,33 +208,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", @@ -820,33 +217,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", @@ -856,33 +226,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", @@ -892,33 +235,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", @@ -927,36 +243,9 @@ "Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key" + "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key" ], "hkdf.https.any.html?2001-3000": [ - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", @@ -966,33 +255,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", @@ -1002,33 +264,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", @@ -1038,33 +273,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", @@ -1074,33 +282,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", @@ -1110,33 +291,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", @@ -1146,33 +300,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", @@ -1182,33 +309,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", @@ -1218,33 +318,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", @@ -1254,33 +327,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", @@ -1290,33 +336,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", @@ -1326,33 +345,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", @@ -1362,33 +354,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", @@ -1398,33 +363,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage" ], @@ -1436,33 +374,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", @@ -1472,33 +383,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", @@ -1508,33 +392,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", @@ -1544,33 +401,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", @@ -1580,33 +410,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", @@ -1616,33 +419,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", @@ -1652,33 +428,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", @@ -1688,33 +437,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", @@ -1723,36 +445,9 @@ "Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key" + "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key" ], "hkdf.https.any.worker.html?1-1000": [ - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", @@ -1762,33 +457,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", @@ -1798,33 +466,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", @@ -1834,33 +475,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", @@ -1870,33 +484,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", @@ -1906,33 +493,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", @@ -1942,33 +502,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", @@ -1978,33 +511,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", @@ -2014,33 +520,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", @@ -2050,33 +529,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", @@ -2086,33 +538,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", @@ -2122,33 +547,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", @@ -2158,33 +556,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", @@ -2194,33 +565,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage" ], @@ -2232,33 +576,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", @@ -2268,33 +585,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", @@ -2304,33 +594,6 @@ "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", @@ -2340,33 +603,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", @@ -2376,33 +612,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", @@ -2412,33 +621,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", @@ -2448,33 +630,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", @@ -2484,33 +639,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", @@ -2520,33 +648,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", @@ -2556,33 +657,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", @@ -2592,33 +666,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", @@ -2628,33 +675,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", @@ -2663,36 +683,9 @@ "Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key" + "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key" ], "hkdf.https.any.worker.html?2001-3000": [ - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", @@ -2702,33 +695,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", @@ -2738,33 +704,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", @@ -2774,33 +713,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", @@ -2810,33 +722,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", @@ -2846,33 +731,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", @@ -2882,33 +740,6 @@ "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", @@ -2918,33 +749,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", @@ -2954,33 +758,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", @@ -2990,33 +767,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", @@ -3026,33 +776,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", @@ -3062,33 +785,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", @@ -3098,33 +794,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", @@ -3134,33 +803,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage" ], @@ -3172,33 +814,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", @@ -3208,33 +823,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with normal info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", @@ -3244,33 +832,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with empty info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", @@ -3280,33 +841,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with normal info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", @@ -3316,33 +850,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with empty info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", @@ -3352,33 +859,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with normal info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", @@ -3388,33 +868,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with empty info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", @@ -3424,33 +877,6 @@ "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with normal info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", @@ -3459,36 +885,9 @@ "Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with empty info", "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key" + "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key" ], "pbkdf2.https.any.html?1-1000": [ - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", @@ -3498,33 +897,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", @@ -3534,33 +906,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", @@ -3570,45 +915,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, short salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", @@ -3618,33 +927,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", @@ -3654,33 +936,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", @@ -3690,45 +945,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, short salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", @@ -3738,33 +957,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", @@ -3774,33 +966,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", @@ -3810,45 +975,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, short salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", @@ -3858,33 +987,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", @@ -3894,33 +996,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", @@ -3930,45 +1005,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, short salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", @@ -3977,36 +1016,9 @@ "Derived key of type name: AES-CTR length: 192 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key" + "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key" ], "pbkdf2.https.any.html?1001-2000": [ - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", @@ -4016,33 +1028,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", @@ -4052,45 +1037,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, long salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", @@ -4100,33 +1049,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", @@ -4136,33 +1058,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", @@ -4172,45 +1067,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, long salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", @@ -4220,33 +1079,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", @@ -4256,33 +1088,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", @@ -4292,45 +1097,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, long salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", @@ -4340,33 +1109,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", @@ -4376,33 +1118,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", @@ -4412,45 +1127,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, long salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", @@ -4459,36 +1138,9 @@ "Derived key of type name: AES-CTR length: 192 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key" + "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key" ], "pbkdf2.https.any.html?2001-3000": [ - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", @@ -4498,33 +1150,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", @@ -4534,45 +1159,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, empty salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", @@ -4582,33 +1171,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", @@ -4618,33 +1180,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", @@ -4654,45 +1189,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, empty salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", @@ -4702,33 +1201,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", @@ -4738,33 +1210,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", @@ -4774,45 +1219,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, empty salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", @@ -4822,33 +1231,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", @@ -4858,33 +1240,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", @@ -4894,45 +1249,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, empty salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", @@ -4942,33 +1261,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage" ], @@ -4980,33 +1272,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", @@ -5016,45 +1281,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, short salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", @@ -5064,33 +1293,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", @@ -5100,33 +1302,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", @@ -5136,45 +1311,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, short salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", @@ -5184,33 +1323,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", @@ -5220,33 +1332,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", @@ -5256,45 +1341,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, short salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", @@ -5304,33 +1353,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", @@ -5340,33 +1362,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", @@ -5376,45 +1371,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, short salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", @@ -5424,33 +1383,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", @@ -5459,36 +1391,9 @@ "Derived key of type name: AES-CTR length: 192 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key" + "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key" ], "pbkdf2.https.any.html?4001-5000": [ - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", @@ -5498,45 +1403,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, long salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", @@ -5546,33 +1415,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", @@ -5582,33 +1424,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", @@ -5618,45 +1433,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, long salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", @@ -5666,33 +1445,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", @@ -5702,33 +1454,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", @@ -5738,45 +1463,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, long salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", @@ -5786,33 +1475,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", @@ -5822,33 +1484,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", @@ -5858,45 +1493,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, long salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", @@ -5906,33 +1505,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", @@ -5941,36 +1513,9 @@ "Derived key of type name: AES-CTR length: 192 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-384, with 100000 iterations" + "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key" ], "pbkdf2.https.any.html?5001-6000": [ - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", @@ -5980,45 +1525,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, empty salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", @@ -6028,33 +1537,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", @@ -6064,33 +1546,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", @@ -6100,45 +1555,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, empty salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", @@ -6148,33 +1567,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", @@ -6184,33 +1576,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", @@ -6220,45 +1585,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, empty salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", @@ -6268,33 +1597,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", @@ -6304,33 +1606,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", @@ -6340,45 +1615,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, empty salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", @@ -6388,33 +1627,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", @@ -6424,33 +1636,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", @@ -6459,48 +1644,12 @@ "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage" + "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key" ], "pbkdf2.https.any.html?6001-7000": [ - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", @@ -6510,33 +1659,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", @@ -6546,33 +1668,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", @@ -6582,45 +1677,9 @@ "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", @@ -6630,33 +1689,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", @@ -6666,33 +1698,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", @@ -6702,45 +1707,9 @@ "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", @@ -6750,33 +1719,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", @@ -6786,33 +1728,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", @@ -6822,45 +1737,9 @@ "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", @@ -6870,33 +1749,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", @@ -6906,33 +1758,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", @@ -6941,48 +1766,12 @@ "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key" + "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key" ], "pbkdf2.https.any.html?7001-8000": [ - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", @@ -6992,33 +1781,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", @@ -7028,33 +1790,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", @@ -7064,45 +1799,9 @@ "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", @@ -7112,33 +1811,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", @@ -7148,33 +1820,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", @@ -7184,45 +1829,9 @@ "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", @@ -7232,33 +1841,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", @@ -7268,33 +1850,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", @@ -7304,45 +1859,9 @@ "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", @@ -7352,33 +1871,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", @@ -7388,33 +1880,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", @@ -7424,47 +1889,11 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 1 iterations" + "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 0 iterations" ], "pbkdf2.https.any.html?8001-last": [ - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", @@ -7474,33 +1903,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", @@ -7510,33 +1912,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", @@ -7546,45 +1921,9 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", @@ -7594,33 +1933,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", @@ -7630,33 +1942,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", @@ -7666,45 +1951,9 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", @@ -7714,33 +1963,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", @@ -7750,33 +1972,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", @@ -7786,47 +1981,11 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 0 iterations" + "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 0 iterations" ], "pbkdf2.https.any.worker.html?1-1000": [ - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", @@ -7836,33 +1995,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", @@ -7872,33 +2004,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", @@ -7908,45 +2013,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, short salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", @@ -7956,33 +2025,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", @@ -7992,33 +2034,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", @@ -8028,45 +2043,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, short salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", @@ -8076,33 +2055,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", @@ -8112,33 +2064,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", @@ -8148,45 +2073,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, short salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", @@ -8196,33 +2085,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", @@ -8232,33 +2094,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", @@ -8268,45 +2103,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, short salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", @@ -8315,36 +2114,9 @@ "Derived key of type name: AES-CTR length: 192 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key" + "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key" ], "pbkdf2.https.any.worker.html?1001-2000": [ - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", @@ -8354,33 +2126,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", @@ -8390,45 +2135,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, long salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", @@ -8438,33 +2147,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", @@ -8474,33 +2156,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", @@ -8510,45 +2165,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, long salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", @@ -8558,33 +2177,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", @@ -8594,33 +2186,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", @@ -8630,45 +2195,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, long salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", @@ -8678,33 +2207,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", @@ -8714,33 +2216,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", @@ -8750,45 +2225,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, long salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", @@ -8797,36 +2236,9 @@ "Derived key of type name: AES-CTR length: 192 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key" + "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key" ], "pbkdf2.https.any.worker.html?2001-3000": [ - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", @@ -8836,33 +2248,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", @@ -8872,45 +2257,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, empty salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", @@ -8920,33 +2269,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", @@ -8956,33 +2278,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", @@ -8992,45 +2287,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, empty salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", @@ -9040,33 +2299,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", @@ -9076,33 +2308,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", @@ -9112,45 +2317,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, empty salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", @@ -9160,33 +2329,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", @@ -9196,33 +2338,6 @@ "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", @@ -9232,45 +2347,9 @@ "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using short password, empty salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", @@ -9280,33 +2359,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage" ], @@ -9318,33 +2370,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", @@ -9354,45 +2379,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, short salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", @@ -9402,33 +2391,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", @@ -9438,33 +2400,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", @@ -9474,45 +2409,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, short salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", @@ -9522,33 +2421,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", @@ -9558,33 +2430,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", @@ -9594,45 +2439,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, short salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", @@ -9642,33 +2451,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", @@ -9678,33 +2460,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", @@ -9714,45 +2469,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, short salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", @@ -9762,33 +2481,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", @@ -9797,36 +2489,9 @@ "Derived key of type name: AES-CTR length: 192 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key" + "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key" ], "pbkdf2.https.any.worker.html?4001-5000": [ - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", @@ -9836,45 +2501,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, long salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", @@ -9884,33 +2513,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", @@ -9920,33 +2522,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", @@ -9956,45 +2531,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, long salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", @@ -10004,33 +2543,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", @@ -10040,33 +2552,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", @@ -10076,45 +2561,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, long salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", @@ -10124,33 +2573,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", @@ -10160,33 +2582,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", @@ -10196,45 +2591,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, long salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", @@ -10244,33 +2603,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", @@ -10279,36 +2611,9 @@ "Derived key of type name: AES-CTR length: 192 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-384, with 100000 iterations" + "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key" ], "pbkdf2.https.any.worker.html?5001-6000": [ - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", @@ -10318,45 +2623,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, empty salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", @@ -10366,33 +2635,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", @@ -10402,33 +2644,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", @@ -10438,45 +2653,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, empty salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", @@ -10486,33 +2665,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", @@ -10522,33 +2674,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", @@ -10558,45 +2683,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, empty salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", @@ -10606,33 +2695,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", @@ -10642,33 +2704,6 @@ "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", @@ -10678,45 +2713,9 @@ "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using long password, empty salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", @@ -10726,33 +2725,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", @@ -10762,33 +2734,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", @@ -10797,48 +2742,12 @@ "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage" + "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key" ], "pbkdf2.https.any.worker.html?6001-7000": [ - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", @@ -10848,33 +2757,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", @@ -10884,33 +2766,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", @@ -10920,45 +2775,9 @@ "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", @@ -10968,33 +2787,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", @@ -11004,33 +2796,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", @@ -11040,45 +2805,9 @@ "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", @@ -11088,33 +2817,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", @@ -11124,33 +2826,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", @@ -11160,45 +2835,9 @@ "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", @@ -11208,33 +2847,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", @@ -11244,33 +2856,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", @@ -11279,48 +2864,12 @@ "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key" + "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key" ], "pbkdf2.https.any.worker.html?7001-8000": [ - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", @@ -11330,33 +2879,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", @@ -11366,33 +2888,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", @@ -11402,45 +2897,9 @@ "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", @@ -11450,33 +2909,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", @@ -11486,33 +2918,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", @@ -11522,45 +2927,9 @@ "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", @@ -11570,33 +2939,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", @@ -11606,33 +2948,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", @@ -11642,45 +2957,9 @@ "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", @@ -11690,33 +2969,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", @@ -11726,33 +2978,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", @@ -11762,47 +2987,11 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 1 iterations" + "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 0 iterations" ], "pbkdf2.https.any.worker.html?8001-last": [ - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", @@ -11812,33 +3001,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", @@ -11848,33 +3010,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", @@ -11884,45 +3019,9 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-512, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", @@ -11932,33 +3031,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", @@ -11968,33 +3040,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", @@ -12004,45 +3049,9 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-1, with 0 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", @@ -12052,33 +3061,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 1 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", @@ -12088,33 +3070,6 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 1000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", @@ -12124,36 +3079,9 @@ "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 100000 iterations", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 0 iterations", "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 0 iterations" + "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 0 iterations" ] }, "digest": { @@ -12161,827 +3089,741 @@ "digest.https.any.worker.html": true }, "encrypt_decrypt": { - "aes_cbc.https.any.html": [ - "importKey step: AES-CBC 128-bit key", - "importKey step: AES-CBC 192-bit key", - "importKey step: AES-CBC 256-bit key", - "importKey step: AES-CBC 128-bit key with altered plaintext", - "importKey step: AES-CBC 192-bit key with altered plaintext", - "importKey step: AES-CBC 256-bit key with altered plaintext", - "importKey step for decryption: AES-CBC 128-bit key", - "importKey step for decryption: AES-CBC 192-bit key", - "importKey step for decryption: AES-CBC 256-bit key", - "importKey step for decryption: AES-CBC 128-bit key with altered ciphertext", - "importKey step for decryption: AES-CBC 192-bit key with altered ciphertext", - "importKey step for decryption: AES-CBC 256-bit key with altered ciphertext", - "importKey step: AES-CBC 128-bit key without encrypt usage", - "importKey step: AES-CBC 192-bit key without encrypt usage", - "importKey step: AES-CBC 256-bit key without encrypt usage", - "importKey step: AES-CBC 128-bit key with mismatched key and algorithm", - "importKey step: AES-CBC 192-bit key with mismatched key and algorithm", - "importKey step: AES-CBC 256-bit key with mismatched key and algorithm", - "importKey step: AES-CBC 128-bit key without decrypt usage", - "importKey step: AES-CBC 192-bit key without decrypt usage", - "importKey step: AES-CBC 256-bit key without decrypt usage", - "importKey step: AES-CBC 128-bit key, 64-bit IV", - "importKey step: AES-CBC 128-bit key, 192-bit IV", - "importKey step: AES-CBC 192-bit key, 64-bit IV", - "importKey step: AES-CBC 192-bit key, 192-bit IV", - "importKey step: AES-CBC 256-bit key, 64-bit IV", - "importKey step: AES-CBC 256-bit key, 192-bit IV", - "importKey step: decryption AES-CBC 128-bit key, 64-bit IV", - "importKey step: decryption AES-CBC 128-bit key, 192-bit IV", - "importKey step: decryption AES-CBC 192-bit key, 64-bit IV", - "importKey step: decryption AES-CBC 192-bit key, 192-bit IV", - "importKey step: decryption AES-CBC 256-bit key, 64-bit IV", - "importKey step: decryption AES-CBC 256-bit key, 192-bit IV", - "importKey step: decryption AES-CBC 128-bit key, zeroPadChar", - "importKey step: decryption AES-CBC 128-bit key, bigPadChar", - "importKey step: decryption AES-CBC 128-bit key, inconsistentPadChars", - "importKey step: decryption AES-CBC 192-bit key, zeroPadChar", - "importKey step: decryption AES-CBC 192-bit key, bigPadChar", - "importKey step: decryption AES-CBC 192-bit key, inconsistentPadChars", - "importKey step: decryption AES-CBC 256-bit key, zeroPadChar", - "importKey step: decryption AES-CBC 256-bit key, bigPadChar", - "importKey step: decryption AES-CBC 256-bit key, inconsistentPadChars" - ], - "aes_cbc.https.any.worker.html": [ - "importKey step: AES-CBC 128-bit key", - "importKey step: AES-CBC 192-bit key", - "importKey step: AES-CBC 256-bit key", - "importKey step: AES-CBC 128-bit key with altered plaintext", - "importKey step: AES-CBC 192-bit key with altered plaintext", - "importKey step: AES-CBC 256-bit key with altered plaintext", - "importKey step for decryption: AES-CBC 128-bit key", - "importKey step for decryption: AES-CBC 192-bit key", - "importKey step for decryption: AES-CBC 256-bit key", - "importKey step for decryption: AES-CBC 128-bit key with altered ciphertext", - "importKey step for decryption: AES-CBC 192-bit key with altered ciphertext", - "importKey step for decryption: AES-CBC 256-bit key with altered ciphertext", - "importKey step: AES-CBC 128-bit key without encrypt usage", - "importKey step: AES-CBC 192-bit key without encrypt usage", - "importKey step: AES-CBC 256-bit key without encrypt usage", - "importKey step: AES-CBC 128-bit key with mismatched key and algorithm", - "importKey step: AES-CBC 192-bit key with mismatched key and algorithm", - "importKey step: AES-CBC 256-bit key with mismatched key and algorithm", - "importKey step: AES-CBC 128-bit key without decrypt usage", - "importKey step: AES-CBC 192-bit key without decrypt usage", - "importKey step: AES-CBC 256-bit key without decrypt usage", - "importKey step: AES-CBC 128-bit key, 64-bit IV", - "importKey step: AES-CBC 128-bit key, 192-bit IV", - "importKey step: AES-CBC 192-bit key, 64-bit IV", - "importKey step: AES-CBC 192-bit key, 192-bit IV", - "importKey step: AES-CBC 256-bit key, 64-bit IV", - "importKey step: AES-CBC 256-bit key, 192-bit IV", - "importKey step: decryption AES-CBC 128-bit key, 64-bit IV", - "importKey step: decryption AES-CBC 128-bit key, 192-bit IV", - "importKey step: decryption AES-CBC 192-bit key, 64-bit IV", - "importKey step: decryption AES-CBC 192-bit key, 192-bit IV", - "importKey step: decryption AES-CBC 256-bit key, 64-bit IV", - "importKey step: decryption AES-CBC 256-bit key, 192-bit IV", - "importKey step: decryption AES-CBC 128-bit key, zeroPadChar", - "importKey step: decryption AES-CBC 128-bit key, bigPadChar", - "importKey step: decryption AES-CBC 128-bit key, inconsistentPadChars", - "importKey step: decryption AES-CBC 192-bit key, zeroPadChar", - "importKey step: decryption AES-CBC 192-bit key, bigPadChar", - "importKey step: decryption AES-CBC 192-bit key, inconsistentPadChars", - "importKey step: decryption AES-CBC 256-bit key, zeroPadChar", - "importKey step: decryption AES-CBC 256-bit key, bigPadChar", - "importKey step: decryption AES-CBC 256-bit key, inconsistentPadChars" - ], + "aes_cbc.https.any.html": false, + "aes_cbc.https.any.worker.html": false, "aes_ctr.https.any.html": [ - "importKey step: AES-CTR 128-bit key", - "importKey step: AES-CTR 192-bit key", - "importKey step: AES-CTR 256-bit key", - "importKey step: AES-CTR 128-bit key with altered plaintext", - "importKey step: AES-CTR 192-bit key with altered plaintext", - "importKey step: AES-CTR 256-bit key with altered plaintext", - "importKey step for decryption: AES-CTR 128-bit key", - "importKey step for decryption: AES-CTR 192-bit key", - "importKey step for decryption: AES-CTR 256-bit key", - "importKey step for decryption: AES-CTR 128-bit key with altered ciphertext", - "importKey step for decryption: AES-CTR 192-bit key with altered ciphertext", - "importKey step for decryption: AES-CTR 256-bit key with altered ciphertext", - "importKey step: AES-CTR 128-bit key without encrypt usage", - "importKey step: AES-CTR 192-bit key without encrypt usage", - "importKey step: AES-CTR 256-bit key without encrypt usage", - "importKey step: AES-CTR 128-bit key with mismatched key and algorithm", - "importKey step: AES-CTR 192-bit key with mismatched key and algorithm", - "importKey step: AES-CTR 256-bit key with mismatched key and algorithm", - "importKey step: AES-CTR 128-bit key without decrypt usage", - "importKey step: AES-CTR 192-bit key without decrypt usage", - "importKey step: AES-CTR 256-bit key without decrypt usage", - "importKey step: AES-CTR 128-bit key, 0-bit counter", - "importKey step: AES-CTR 128-bit key, 129-bit counter", - "importKey step: AES-CTR 192-bit key, 0-bit counter", - "importKey step: AES-CTR 192-bit key, 129-bit counter", - "importKey step: AES-CTR 256-bit key, 0-bit counter", - "importKey step: AES-CTR 256-bit key, 129-bit counter", - "importKey step: decryption AES-CTR 128-bit key, 0-bit counter", - "importKey step: decryption AES-CTR 128-bit key, 129-bit counter", - "importKey step: decryption AES-CTR 192-bit key, 0-bit counter", - "importKey step: decryption AES-CTR 192-bit key, 129-bit counter", - "importKey step: decryption AES-CTR 256-bit key, 0-bit counter", - "importKey step: decryption AES-CTR 256-bit key, 129-bit counter" + "AES-CTR 128-bit key", + "AES-CTR 192-bit key", + "AES-CTR 256-bit key", + "AES-CTR 128-bit key with altered plaintext", + "AES-CTR 192-bit key with altered plaintext", + "AES-CTR 256-bit key with altered plaintext", + "AES-CTR 128-bit key decryption", + "AES-CTR 192-bit key decryption", + "AES-CTR 256-bit key decryption", + "AES-CTR 128-bit key decryption with altered ciphertext", + "AES-CTR 192-bit key decryption with altered ciphertext", + "AES-CTR 256-bit key decryption with altered ciphertext", + "AES-CTR 128-bit key without encrypt usage", + "AES-CTR 192-bit key without encrypt usage", + "AES-CTR 256-bit key without encrypt usage", + "AES-CTR 128-bit key with mismatched key and algorithm", + "AES-CTR 192-bit key with mismatched key and algorithm", + "AES-CTR 256-bit key with mismatched key and algorithm", + "AES-CTR 128-bit key without decrypt usage", + "AES-CTR 192-bit key without decrypt usage", + "AES-CTR 256-bit key without decrypt usage", + "AES-CTR 128-bit key, 0-bit counter", + "AES-CTR 128-bit key, 129-bit counter", + "AES-CTR 192-bit key, 0-bit counter", + "AES-CTR 192-bit key, 129-bit counter", + "AES-CTR 256-bit key, 0-bit counter", + "AES-CTR 256-bit key, 129-bit counter", + "AES-CTR 128-bit key, 0-bit counter decryption", + "AES-CTR 128-bit key, 129-bit counter decryption", + "AES-CTR 192-bit key, 0-bit counter decryption", + "AES-CTR 192-bit key, 129-bit counter decryption", + "AES-CTR 256-bit key, 0-bit counter decryption", + "AES-CTR 256-bit key, 129-bit counter decryption" ], "aes_ctr.https.any.worker.html": [ - "importKey step: AES-CTR 128-bit key", - "importKey step: AES-CTR 192-bit key", - "importKey step: AES-CTR 256-bit key", - "importKey step: AES-CTR 128-bit key with altered plaintext", - "importKey step: AES-CTR 192-bit key with altered plaintext", - "importKey step: AES-CTR 256-bit key with altered plaintext", - "importKey step for decryption: AES-CTR 128-bit key", - "importKey step for decryption: AES-CTR 192-bit key", - "importKey step for decryption: AES-CTR 256-bit key", - "importKey step for decryption: AES-CTR 128-bit key with altered ciphertext", - "importKey step for decryption: AES-CTR 192-bit key with altered ciphertext", - "importKey step for decryption: AES-CTR 256-bit key with altered ciphertext", - "importKey step: AES-CTR 128-bit key without encrypt usage", - "importKey step: AES-CTR 192-bit key without encrypt usage", - "importKey step: AES-CTR 256-bit key without encrypt usage", - "importKey step: AES-CTR 128-bit key with mismatched key and algorithm", - "importKey step: AES-CTR 192-bit key with mismatched key and algorithm", - "importKey step: AES-CTR 256-bit key with mismatched key and algorithm", - "importKey step: AES-CTR 128-bit key without decrypt usage", - "importKey step: AES-CTR 192-bit key without decrypt usage", - "importKey step: AES-CTR 256-bit key without decrypt usage", - "importKey step: AES-CTR 128-bit key, 0-bit counter", - "importKey step: AES-CTR 128-bit key, 129-bit counter", - "importKey step: AES-CTR 192-bit key, 0-bit counter", - "importKey step: AES-CTR 192-bit key, 129-bit counter", - "importKey step: AES-CTR 256-bit key, 0-bit counter", - "importKey step: AES-CTR 256-bit key, 129-bit counter", - "importKey step: decryption AES-CTR 128-bit key, 0-bit counter", - "importKey step: decryption AES-CTR 128-bit key, 129-bit counter", - "importKey step: decryption AES-CTR 192-bit key, 0-bit counter", - "importKey step: decryption AES-CTR 192-bit key, 129-bit counter", - "importKey step: decryption AES-CTR 256-bit key, 0-bit counter", - "importKey step: decryption AES-CTR 256-bit key, 129-bit counter" + "AES-CTR 128-bit key", + "AES-CTR 192-bit key", + "AES-CTR 256-bit key", + "AES-CTR 128-bit key with altered plaintext", + "AES-CTR 192-bit key with altered plaintext", + "AES-CTR 256-bit key with altered plaintext", + "AES-CTR 128-bit key decryption", + "AES-CTR 192-bit key decryption", + "AES-CTR 256-bit key decryption", + "AES-CTR 128-bit key decryption with altered ciphertext", + "AES-CTR 192-bit key decryption with altered ciphertext", + "AES-CTR 256-bit key decryption with altered ciphertext", + "AES-CTR 128-bit key without encrypt usage", + "AES-CTR 192-bit key without encrypt usage", + "AES-CTR 256-bit key without encrypt usage", + "AES-CTR 128-bit key with mismatched key and algorithm", + "AES-CTR 192-bit key with mismatched key and algorithm", + "AES-CTR 256-bit key with mismatched key and algorithm", + "AES-CTR 128-bit key without decrypt usage", + "AES-CTR 192-bit key without decrypt usage", + "AES-CTR 256-bit key without decrypt usage", + "AES-CTR 128-bit key, 0-bit counter", + "AES-CTR 128-bit key, 129-bit counter", + "AES-CTR 192-bit key, 0-bit counter", + "AES-CTR 192-bit key, 129-bit counter", + "AES-CTR 256-bit key, 0-bit counter", + "AES-CTR 256-bit key, 129-bit counter", + "AES-CTR 128-bit key, 0-bit counter decryption", + "AES-CTR 128-bit key, 129-bit counter decryption", + "AES-CTR 192-bit key, 0-bit counter decryption", + "AES-CTR 192-bit key, 129-bit counter decryption", + "AES-CTR 256-bit key, 0-bit counter decryption", + "AES-CTR 256-bit key, 129-bit counter decryption" ], "aes_gcm.https.any.html": [ - "importKey step: AES-GCM 128-bit key, 32-bit tag", - "importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag", - "importKey step: AES-GCM 128-bit key, 64-bit tag", - "importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag", - "importKey step: AES-GCM 128-bit key, 96-bit tag", - "importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag", - "importKey step: AES-GCM 128-bit key, 104-bit tag", - "importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag", - "importKey step: AES-GCM 128-bit key, 112-bit tag", - "importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag", - "importKey step: AES-GCM 128-bit key, 120-bit tag", - "importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag", - "importKey step: AES-GCM 128-bit key, 128-bit tag", - "importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag", - "importKey step: AES-GCM 192-bit key, 32-bit tag", - "importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag", - "importKey step: AES-GCM 192-bit key, 64-bit tag", - "importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag", - "importKey step: AES-GCM 192-bit key, 96-bit tag", - "importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag", - "importKey step: AES-GCM 192-bit key, 104-bit tag", - "importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag", - "importKey step: AES-GCM 192-bit key, 112-bit tag", - "importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag", - "importKey step: AES-GCM 192-bit key, 120-bit tag", - "importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag", - "importKey step: AES-GCM 192-bit key, 128-bit tag", - "importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag", - "importKey step: AES-GCM 256-bit key, 32-bit tag", - "importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag", - "importKey step: AES-GCM 256-bit key, 64-bit tag", - "importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag", - "importKey step: AES-GCM 256-bit key, 96-bit tag", - "importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag", - "importKey step: AES-GCM 256-bit key, 104-bit tag", - "importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag", - "importKey step: AES-GCM 256-bit key, 112-bit tag", - "importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag", - "importKey step: AES-GCM 256-bit key, 120-bit tag", - "importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag", - "importKey step: AES-GCM 256-bit key, 128-bit tag", - "importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag", - "importKey step: AES-GCM 128-bit key, 32-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, 64-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, 96-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, 104-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, 112-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, 120-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, 128-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, 32-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, 64-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, 96-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, 104-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, 112-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, 120-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, 128-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, 32-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, 64-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, 96-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, 104-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, 112-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, 120-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, 128-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag with altered plaintext", - "importKey step for decryption: AES-GCM 128-bit key, 32-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 32-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, 64-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 64-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, 96-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 96-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, 104-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 104-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, 112-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 112-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, 120-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 120-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, 128-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 128-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, 32-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 32-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, 64-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 64-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, 96-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 96-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, 104-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 104-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, 112-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 112-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, 120-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 120-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, 128-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 128-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, 32-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 32-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, 64-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 64-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, 96-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 96-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, 104-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 104-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, 112-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 112-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, 120-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 120-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, 128-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 128-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, 32-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 32-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, 64-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 64-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, 96-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 96-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, 104-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 104-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, 112-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 112-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, 120-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 120-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, 128-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 128-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, 32-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 32-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, 64-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 64-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, 96-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 96-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, 104-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 104-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, 112-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 112-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, 120-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 120-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, 128-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 128-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, 32-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 32-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, 64-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 64-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, 96-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 96-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, 104-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 104-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, 112-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 112-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, 120-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 120-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, 128-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 128-bit tag with altered ciphertext", - "importKey step: AES-GCM 128-bit key, 32-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, 64-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, 96-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, 104-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, 112-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, 120-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, 128-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, 32-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, 64-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, 96-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, 104-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, 112-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, 120-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, 128-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, 32-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, 64-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, 96-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, 104-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, 112-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, 120-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, 128-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, 32-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, 64-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, 96-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, 104-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, 112-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, 120-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, 128-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, 32-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, 64-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, 96-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, 104-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, 112-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, 120-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, 128-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, 32-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, 64-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, 96-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, 104-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, 112-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, 120-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, 128-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, 32-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, 64-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, 96-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, 104-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, 112-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, 120-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, 128-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, 32-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, 64-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, 96-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, 104-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, 112-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, 120-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, 128-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, 32-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, 64-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, 96-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, 104-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, 112-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, 120-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, 128-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, illegal tag length 24-bits", - "importKey step: AES-GCM 128-bit key, illegal tag length 48-bits", - "importKey step: AES-GCM 128-bit key, illegal tag length 72-bits", - "importKey step: AES-GCM 128-bit key, illegal tag length 95-bits", - "importKey step: AES-GCM 128-bit key, illegal tag length 129-bits", - "importKey step: AES-GCM 128-bit key, illegal tag length 256-bits", - "importKey step: AES-GCM 192-bit key, illegal tag length 24-bits", - "importKey step: AES-GCM 192-bit key, illegal tag length 48-bits", - "importKey step: AES-GCM 192-bit key, illegal tag length 72-bits", - "importKey step: AES-GCM 192-bit key, illegal tag length 95-bits", - "importKey step: AES-GCM 192-bit key, illegal tag length 129-bits", - "importKey step: AES-GCM 192-bit key, illegal tag length 256-bits", - "importKey step: AES-GCM 256-bit key, illegal tag length 24-bits", - "importKey step: AES-GCM 256-bit key, illegal tag length 48-bits", - "importKey step: AES-GCM 256-bit key, illegal tag length 72-bits", - "importKey step: AES-GCM 256-bit key, illegal tag length 95-bits", - "importKey step: AES-GCM 256-bit key, illegal tag length 129-bits", - "importKey step: AES-GCM 256-bit key, illegal tag length 256-bits", - "importKey step: decryption AES-GCM 128-bit key, illegal tag length 24-bits", - "importKey step: decryption AES-GCM 128-bit key, illegal tag length 48-bits", - "importKey step: decryption AES-GCM 128-bit key, illegal tag length 72-bits", - "importKey step: decryption AES-GCM 128-bit key, illegal tag length 95-bits", - "importKey step: decryption AES-GCM 128-bit key, illegal tag length 129-bits", - "importKey step: decryption AES-GCM 128-bit key, illegal tag length 256-bits", - "importKey step: decryption AES-GCM 192-bit key, illegal tag length 24-bits", - "importKey step: decryption AES-GCM 192-bit key, illegal tag length 48-bits", - "importKey step: decryption AES-GCM 192-bit key, illegal tag length 72-bits", - "importKey step: decryption AES-GCM 192-bit key, illegal tag length 95-bits", - "importKey step: decryption AES-GCM 192-bit key, illegal tag length 129-bits", - "importKey step: decryption AES-GCM 192-bit key, illegal tag length 256-bits", - "importKey step: decryption AES-GCM 256-bit key, illegal tag length 24-bits", - "importKey step: decryption AES-GCM 256-bit key, illegal tag length 48-bits", - "importKey step: decryption AES-GCM 256-bit key, illegal tag length 72-bits", - "importKey step: decryption AES-GCM 256-bit key, illegal tag length 95-bits", - "importKey step: decryption AES-GCM 256-bit key, illegal tag length 129-bits", - "importKey step: decryption AES-GCM 256-bit key, illegal tag length 256-bits" + "AES-GCM 128-bit key, 32-bit tag", + "AES-GCM 128-bit key, no additional data, 32-bit tag", + "AES-GCM 128-bit key, 64-bit tag", + "AES-GCM 128-bit key, no additional data, 64-bit tag", + "AES-GCM 128-bit key, 96-bit tag", + "AES-GCM 128-bit key, no additional data, 96-bit tag", + "AES-GCM 128-bit key, 104-bit tag", + "AES-GCM 128-bit key, no additional data, 104-bit tag", + "AES-GCM 128-bit key, 112-bit tag", + "AES-GCM 128-bit key, no additional data, 112-bit tag", + "AES-GCM 128-bit key, 120-bit tag", + "AES-GCM 128-bit key, no additional data, 120-bit tag", + "AES-GCM 128-bit key, 128-bit tag", + "AES-GCM 128-bit key, no additional data, 128-bit tag", + "AES-GCM 192-bit key, 32-bit tag", + "AES-GCM 192-bit key, no additional data, 32-bit tag", + "AES-GCM 192-bit key, 64-bit tag", + "AES-GCM 192-bit key, no additional data, 64-bit tag", + "AES-GCM 192-bit key, 96-bit tag", + "AES-GCM 192-bit key, no additional data, 96-bit tag", + "AES-GCM 192-bit key, 104-bit tag", + "AES-GCM 192-bit key, no additional data, 104-bit tag", + "AES-GCM 192-bit key, 112-bit tag", + "AES-GCM 192-bit key, no additional data, 112-bit tag", + "AES-GCM 192-bit key, 120-bit tag", + "AES-GCM 192-bit key, no additional data, 120-bit tag", + "AES-GCM 192-bit key, 128-bit tag", + "AES-GCM 192-bit key, no additional data, 128-bit tag", + "AES-GCM 256-bit key, 32-bit tag", + "AES-GCM 256-bit key, no additional data, 32-bit tag", + "AES-GCM 256-bit key, 64-bit tag", + "AES-GCM 256-bit key, no additional data, 64-bit tag", + "AES-GCM 256-bit key, 96-bit tag", + "AES-GCM 256-bit key, no additional data, 96-bit tag", + "AES-GCM 256-bit key, 104-bit tag", + "AES-GCM 256-bit key, no additional data, 104-bit tag", + "AES-GCM 256-bit key, 112-bit tag", + "AES-GCM 256-bit key, no additional data, 112-bit tag", + "AES-GCM 256-bit key, 120-bit tag", + "AES-GCM 256-bit key, no additional data, 120-bit tag", + "AES-GCM 256-bit key, 128-bit tag", + "AES-GCM 256-bit key, no additional data, 128-bit tag", + "AES-GCM 128-bit key, 32-bit tag with altered plaintext", + "AES-GCM 128-bit key, no additional data, 32-bit tag with altered plaintext", + "AES-GCM 128-bit key, 64-bit tag with altered plaintext", + "AES-GCM 128-bit key, no additional data, 64-bit tag with altered plaintext", + "AES-GCM 128-bit key, 96-bit tag with altered plaintext", + "AES-GCM 128-bit key, no additional data, 96-bit tag with altered plaintext", + "AES-GCM 128-bit key, 104-bit tag with altered plaintext", + "AES-GCM 128-bit key, no additional data, 104-bit tag with altered plaintext", + "AES-GCM 128-bit key, 112-bit tag with altered plaintext", + "AES-GCM 128-bit key, no additional data, 112-bit tag with altered plaintext", + "AES-GCM 128-bit key, 120-bit tag with altered plaintext", + "AES-GCM 128-bit key, no additional data, 120-bit tag with altered plaintext", + "AES-GCM 128-bit key, 128-bit tag with altered plaintext", + "AES-GCM 128-bit key, no additional data, 128-bit tag with altered plaintext", + "AES-GCM 192-bit key, 32-bit tag with altered plaintext", + "AES-GCM 192-bit key, no additional data, 32-bit tag with altered plaintext", + "AES-GCM 192-bit key, 64-bit tag with altered plaintext", + "AES-GCM 192-bit key, no additional data, 64-bit tag with altered plaintext", + "AES-GCM 192-bit key, 96-bit tag with altered plaintext", + "AES-GCM 192-bit key, no additional data, 96-bit tag with altered plaintext", + "AES-GCM 192-bit key, 104-bit tag with altered plaintext", + "AES-GCM 192-bit key, no additional data, 104-bit tag with altered plaintext", + "AES-GCM 192-bit key, 112-bit tag with altered plaintext", + "AES-GCM 192-bit key, no additional data, 112-bit tag with altered plaintext", + "AES-GCM 192-bit key, 120-bit tag with altered plaintext", + "AES-GCM 192-bit key, no additional data, 120-bit tag with altered plaintext", + "AES-GCM 192-bit key, 128-bit tag with altered plaintext", + "AES-GCM 192-bit key, no additional data, 128-bit tag with altered plaintext", + "AES-GCM 256-bit key, 32-bit tag with altered plaintext", + "AES-GCM 256-bit key, no additional data, 32-bit tag with altered plaintext", + "AES-GCM 256-bit key, 64-bit tag with altered plaintext", + "AES-GCM 256-bit key, no additional data, 64-bit tag with altered plaintext", + "AES-GCM 256-bit key, 96-bit tag with altered plaintext", + "AES-GCM 256-bit key, no additional data, 96-bit tag with altered plaintext", + "AES-GCM 256-bit key, 104-bit tag with altered plaintext", + "AES-GCM 256-bit key, no additional data, 104-bit tag with altered plaintext", + "AES-GCM 256-bit key, 112-bit tag with altered plaintext", + "AES-GCM 256-bit key, no additional data, 112-bit tag with altered plaintext", + "AES-GCM 256-bit key, 120-bit tag with altered plaintext", + "AES-GCM 256-bit key, no additional data, 120-bit tag with altered plaintext", + "AES-GCM 256-bit key, 128-bit tag with altered plaintext", + "AES-GCM 256-bit key, no additional data, 128-bit tag with altered plaintext", + "AES-GCM 128-bit key, 32-bit tag decryption", + "AES-GCM 128-bit key, no additional data, 32-bit tag decryption", + "AES-GCM 128-bit key, 64-bit tag decryption", + "AES-GCM 128-bit key, no additional data, 64-bit tag decryption", + "AES-GCM 128-bit key, 96-bit tag decryption", + "AES-GCM 128-bit key, no additional data, 96-bit tag decryption", + "AES-GCM 128-bit key, 104-bit tag decryption", + "AES-GCM 128-bit key, no additional data, 104-bit tag decryption", + "AES-GCM 128-bit key, 112-bit tag decryption", + "AES-GCM 128-bit key, no additional data, 112-bit tag decryption", + "AES-GCM 128-bit key, 120-bit tag decryption", + "AES-GCM 128-bit key, no additional data, 120-bit tag decryption", + "AES-GCM 128-bit key, 128-bit tag decryption", + "AES-GCM 128-bit key, no additional data, 128-bit tag decryption", + "AES-GCM 192-bit key, 32-bit tag decryption", + "AES-GCM 192-bit key, no additional data, 32-bit tag decryption", + "AES-GCM 192-bit key, 64-bit tag decryption", + "AES-GCM 192-bit key, no additional data, 64-bit tag decryption", + "AES-GCM 192-bit key, 96-bit tag decryption", + "AES-GCM 192-bit key, no additional data, 96-bit tag decryption", + "AES-GCM 192-bit key, 104-bit tag decryption", + "AES-GCM 192-bit key, no additional data, 104-bit tag decryption", + "AES-GCM 192-bit key, 112-bit tag decryption", + "AES-GCM 192-bit key, no additional data, 112-bit tag decryption", + "AES-GCM 192-bit key, 120-bit tag decryption", + "AES-GCM 192-bit key, no additional data, 120-bit tag decryption", + "AES-GCM 192-bit key, 128-bit tag decryption", + "AES-GCM 192-bit key, no additional data, 128-bit tag decryption", + "AES-GCM 256-bit key, 32-bit tag decryption", + "AES-GCM 256-bit key, no additional data, 32-bit tag decryption", + "AES-GCM 256-bit key, 64-bit tag decryption", + "AES-GCM 256-bit key, no additional data, 64-bit tag decryption", + "AES-GCM 256-bit key, 96-bit tag decryption", + "AES-GCM 256-bit key, no additional data, 96-bit tag decryption", + "AES-GCM 256-bit key, 104-bit tag decryption", + "AES-GCM 256-bit key, no additional data, 104-bit tag decryption", + "AES-GCM 256-bit key, 112-bit tag decryption", + "AES-GCM 256-bit key, no additional data, 112-bit tag decryption", + "AES-GCM 256-bit key, 120-bit tag decryption", + "AES-GCM 256-bit key, no additional data, 120-bit tag decryption", + "AES-GCM 256-bit key, 128-bit tag decryption", + "AES-GCM 256-bit key, no additional data, 128-bit tag decryption", + "AES-GCM 128-bit key, 32-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, no additional data, 32-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, 64-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, no additional data, 64-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, 96-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, no additional data, 96-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, 104-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, no additional data, 104-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, 112-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, no additional data, 112-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, 120-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, no additional data, 120-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, 128-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, no additional data, 128-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, 32-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, no additional data, 32-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, 64-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, no additional data, 64-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, 96-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, no additional data, 96-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, 104-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, no additional data, 104-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, 112-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, no additional data, 112-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, 120-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, no additional data, 120-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, 128-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, no additional data, 128-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, 32-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, no additional data, 32-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, 64-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, no additional data, 64-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, 96-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, no additional data, 96-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, 104-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, no additional data, 104-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, 112-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, no additional data, 112-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, 120-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, no additional data, 120-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, 128-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, no additional data, 128-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, 32-bit tag without encrypt usage", + "AES-GCM 128-bit key, no additional data, 32-bit tag without encrypt usage", + "AES-GCM 128-bit key, 64-bit tag without encrypt usage", + "AES-GCM 128-bit key, no additional data, 64-bit tag without encrypt usage", + "AES-GCM 128-bit key, 96-bit tag without encrypt usage", + "AES-GCM 128-bit key, no additional data, 96-bit tag without encrypt usage", + "AES-GCM 128-bit key, 104-bit tag without encrypt usage", + "AES-GCM 128-bit key, no additional data, 104-bit tag without encrypt usage", + "AES-GCM 128-bit key, 112-bit tag without encrypt usage", + "AES-GCM 128-bit key, no additional data, 112-bit tag without encrypt usage", + "AES-GCM 128-bit key, 120-bit tag without encrypt usage", + "AES-GCM 128-bit key, no additional data, 120-bit tag without encrypt usage", + "AES-GCM 128-bit key, 128-bit tag without encrypt usage", + "AES-GCM 128-bit key, no additional data, 128-bit tag without encrypt usage", + "AES-GCM 192-bit key, 32-bit tag without encrypt usage", + "AES-GCM 192-bit key, no additional data, 32-bit tag without encrypt usage", + "AES-GCM 192-bit key, 64-bit tag without encrypt usage", + "AES-GCM 192-bit key, no additional data, 64-bit tag without encrypt usage", + "AES-GCM 192-bit key, 96-bit tag without encrypt usage", + "AES-GCM 192-bit key, no additional data, 96-bit tag without encrypt usage", + "AES-GCM 192-bit key, 104-bit tag without encrypt usage", + "AES-GCM 192-bit key, no additional data, 104-bit tag without encrypt usage", + "AES-GCM 192-bit key, 112-bit tag without encrypt usage", + "AES-GCM 192-bit key, no additional data, 112-bit tag without encrypt usage", + "AES-GCM 192-bit key, 120-bit tag without encrypt usage", + "AES-GCM 192-bit key, no additional data, 120-bit tag without encrypt usage", + "AES-GCM 192-bit key, 128-bit tag without encrypt usage", + "AES-GCM 192-bit key, no additional data, 128-bit tag without encrypt usage", + "AES-GCM 256-bit key, 32-bit tag without encrypt usage", + "AES-GCM 256-bit key, no additional data, 32-bit tag without encrypt usage", + "AES-GCM 256-bit key, 64-bit tag without encrypt usage", + "AES-GCM 256-bit key, no additional data, 64-bit tag without encrypt usage", + "AES-GCM 256-bit key, 96-bit tag without encrypt usage", + "AES-GCM 256-bit key, no additional data, 96-bit tag without encrypt usage", + "AES-GCM 256-bit key, 104-bit tag without encrypt usage", + "AES-GCM 256-bit key, no additional data, 104-bit tag without encrypt usage", + "AES-GCM 256-bit key, 112-bit tag without encrypt usage", + "AES-GCM 256-bit key, no additional data, 112-bit tag without encrypt usage", + "AES-GCM 256-bit key, 120-bit tag without encrypt usage", + "AES-GCM 256-bit key, no additional data, 120-bit tag without encrypt usage", + "AES-GCM 256-bit key, 128-bit tag without encrypt usage", + "AES-GCM 256-bit key, no additional data, 128-bit tag without encrypt usage", + "AES-GCM 128-bit key, 32-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, no additional data, 32-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, 64-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, no additional data, 64-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, 96-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, no additional data, 96-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, 104-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, no additional data, 104-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, 112-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, no additional data, 112-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, 120-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, no additional data, 120-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, 128-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, no additional data, 128-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, 32-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, no additional data, 32-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, 64-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, no additional data, 64-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, 96-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, no additional data, 96-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, 104-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, no additional data, 104-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, 112-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, no additional data, 112-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, 120-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, no additional data, 120-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, 128-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, no additional data, 128-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, 32-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, no additional data, 32-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, 64-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, no additional data, 64-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, 96-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, no additional data, 96-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, 104-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, no additional data, 104-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, 112-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, no additional data, 112-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, 120-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, no additional data, 120-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, 128-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, no additional data, 128-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, 32-bit tag without decrypt usage", + "AES-GCM 128-bit key, no additional data, 32-bit tag without decrypt usage", + "AES-GCM 128-bit key, 64-bit tag without decrypt usage", + "AES-GCM 128-bit key, no additional data, 64-bit tag without decrypt usage", + "AES-GCM 128-bit key, 96-bit tag without decrypt usage", + "AES-GCM 128-bit key, no additional data, 96-bit tag without decrypt usage", + "AES-GCM 128-bit key, 104-bit tag without decrypt usage", + "AES-GCM 128-bit key, no additional data, 104-bit tag without decrypt usage", + "AES-GCM 128-bit key, 112-bit tag without decrypt usage", + "AES-GCM 128-bit key, no additional data, 112-bit tag without decrypt usage", + "AES-GCM 128-bit key, 120-bit tag without decrypt usage", + "AES-GCM 128-bit key, no additional data, 120-bit tag without decrypt usage", + "AES-GCM 128-bit key, 128-bit tag without decrypt usage", + "AES-GCM 128-bit key, no additional data, 128-bit tag without decrypt usage", + "AES-GCM 192-bit key, 32-bit tag without decrypt usage", + "AES-GCM 192-bit key, no additional data, 32-bit tag without decrypt usage", + "AES-GCM 192-bit key, 64-bit tag without decrypt usage", + "AES-GCM 192-bit key, no additional data, 64-bit tag without decrypt usage", + "AES-GCM 192-bit key, 96-bit tag without decrypt usage", + "AES-GCM 192-bit key, no additional data, 96-bit tag without decrypt usage", + "AES-GCM 192-bit key, 104-bit tag without decrypt usage", + "AES-GCM 192-bit key, no additional data, 104-bit tag without decrypt usage", + "AES-GCM 192-bit key, 112-bit tag without decrypt usage", + "AES-GCM 192-bit key, no additional data, 112-bit tag without decrypt usage", + "AES-GCM 192-bit key, 120-bit tag without decrypt usage", + "AES-GCM 192-bit key, no additional data, 120-bit tag without decrypt usage", + "AES-GCM 192-bit key, 128-bit tag without decrypt usage", + "AES-GCM 192-bit key, no additional data, 128-bit tag without decrypt usage", + "AES-GCM 256-bit key, 32-bit tag without decrypt usage", + "AES-GCM 256-bit key, no additional data, 32-bit tag without decrypt usage", + "AES-GCM 256-bit key, 64-bit tag without decrypt usage", + "AES-GCM 256-bit key, no additional data, 64-bit tag without decrypt usage", + "AES-GCM 256-bit key, 96-bit tag without decrypt usage", + "AES-GCM 256-bit key, no additional data, 96-bit tag without decrypt usage", + "AES-GCM 256-bit key, 104-bit tag without decrypt usage", + "AES-GCM 256-bit key, no additional data, 104-bit tag without decrypt usage", + "AES-GCM 256-bit key, 112-bit tag without decrypt usage", + "AES-GCM 256-bit key, no additional data, 112-bit tag without decrypt usage", + "AES-GCM 256-bit key, 120-bit tag without decrypt usage", + "AES-GCM 256-bit key, no additional data, 120-bit tag without decrypt usage", + "AES-GCM 256-bit key, 128-bit tag without decrypt usage", + "AES-GCM 256-bit key, no additional data, 128-bit tag without decrypt usage", + "AES-GCM 128-bit key, illegal tag length 24-bits", + "AES-GCM 128-bit key, illegal tag length 48-bits", + "AES-GCM 128-bit key, illegal tag length 72-bits", + "AES-GCM 128-bit key, illegal tag length 95-bits", + "AES-GCM 128-bit key, illegal tag length 129-bits", + "AES-GCM 128-bit key, illegal tag length 256-bits", + "AES-GCM 192-bit key, illegal tag length 24-bits", + "AES-GCM 192-bit key, illegal tag length 48-bits", + "AES-GCM 192-bit key, illegal tag length 72-bits", + "AES-GCM 192-bit key, illegal tag length 95-bits", + "AES-GCM 192-bit key, illegal tag length 129-bits", + "AES-GCM 192-bit key, illegal tag length 256-bits", + "AES-GCM 256-bit key, illegal tag length 24-bits", + "AES-GCM 256-bit key, illegal tag length 48-bits", + "AES-GCM 256-bit key, illegal tag length 72-bits", + "AES-GCM 256-bit key, illegal tag length 95-bits", + "AES-GCM 256-bit key, illegal tag length 129-bits", + "AES-GCM 256-bit key, illegal tag length 256-bits", + "AES-GCM 128-bit key, illegal tag length 24-bits decryption", + "AES-GCM 128-bit key, illegal tag length 48-bits decryption", + "AES-GCM 128-bit key, illegal tag length 72-bits decryption", + "AES-GCM 128-bit key, illegal tag length 95-bits decryption", + "AES-GCM 128-bit key, illegal tag length 129-bits decryption", + "AES-GCM 128-bit key, illegal tag length 256-bits decryption", + "AES-GCM 192-bit key, illegal tag length 24-bits decryption", + "AES-GCM 192-bit key, illegal tag length 48-bits decryption", + "AES-GCM 192-bit key, illegal tag length 72-bits decryption", + "AES-GCM 192-bit key, illegal tag length 95-bits decryption", + "AES-GCM 192-bit key, illegal tag length 129-bits decryption", + "AES-GCM 192-bit key, illegal tag length 256-bits decryption", + "AES-GCM 256-bit key, illegal tag length 24-bits decryption", + "AES-GCM 256-bit key, illegal tag length 48-bits decryption", + "AES-GCM 256-bit key, illegal tag length 72-bits decryption", + "AES-GCM 256-bit key, illegal tag length 95-bits decryption", + "AES-GCM 256-bit key, illegal tag length 129-bits decryption", + "AES-GCM 256-bit key, illegal tag length 256-bits decryption" ], "aes_gcm.https.any.worker.html": [ - "importKey step: AES-GCM 128-bit key, 32-bit tag", - "importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag", - "importKey step: AES-GCM 128-bit key, 64-bit tag", - "importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag", - "importKey step: AES-GCM 128-bit key, 96-bit tag", - "importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag", - "importKey step: AES-GCM 128-bit key, 104-bit tag", - "importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag", - "importKey step: AES-GCM 128-bit key, 112-bit tag", - "importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag", - "importKey step: AES-GCM 128-bit key, 120-bit tag", - "importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag", - "importKey step: AES-GCM 128-bit key, 128-bit tag", - "importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag", - "importKey step: AES-GCM 192-bit key, 32-bit tag", - "importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag", - "importKey step: AES-GCM 192-bit key, 64-bit tag", - "importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag", - "importKey step: AES-GCM 192-bit key, 96-bit tag", - "importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag", - "importKey step: AES-GCM 192-bit key, 104-bit tag", - "importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag", - "importKey step: AES-GCM 192-bit key, 112-bit tag", - "importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag", - "importKey step: AES-GCM 192-bit key, 120-bit tag", - "importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag", - "importKey step: AES-GCM 192-bit key, 128-bit tag", - "importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag", - "importKey step: AES-GCM 256-bit key, 32-bit tag", - "importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag", - "importKey step: AES-GCM 256-bit key, 64-bit tag", - "importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag", - "importKey step: AES-GCM 256-bit key, 96-bit tag", - "importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag", - "importKey step: AES-GCM 256-bit key, 104-bit tag", - "importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag", - "importKey step: AES-GCM 256-bit key, 112-bit tag", - "importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag", - "importKey step: AES-GCM 256-bit key, 120-bit tag", - "importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag", - "importKey step: AES-GCM 256-bit key, 128-bit tag", - "importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag", - "importKey step: AES-GCM 128-bit key, 32-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, 64-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, 96-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, 104-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, 112-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, 120-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, 128-bit tag with altered plaintext", - "importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, 32-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, 64-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, 96-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, 104-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, 112-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, 120-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, 128-bit tag with altered plaintext", - "importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, 32-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, 64-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, 96-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, 104-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, 112-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, 120-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, 128-bit tag with altered plaintext", - "importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag with altered plaintext", - "importKey step for decryption: AES-GCM 128-bit key, 32-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 32-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, 64-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 64-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, 96-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 96-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, 104-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 104-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, 112-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 112-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, 120-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 120-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, 128-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 128-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, 32-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 32-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, 64-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 64-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, 96-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 96-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, 104-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 104-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, 112-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 112-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, 120-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 120-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, 128-bit tag", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 128-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, 32-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 32-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, 64-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 64-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, 96-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 96-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, 104-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 104-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, 112-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 112-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, 120-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 120-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, 128-bit tag", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 128-bit tag", - "importKey step for decryption: AES-GCM 128-bit key, 32-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 32-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, 64-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 64-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, 96-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 96-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, 104-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 104-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, 112-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 112-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, 120-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 120-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, 128-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 128-bit key, no additional data, 128-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, 32-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 32-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, 64-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 64-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, 96-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 96-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, 104-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 104-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, 112-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 112-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, 120-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 120-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, 128-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 192-bit key, no additional data, 128-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, 32-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 32-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, 64-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 64-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, 96-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 96-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, 104-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 104-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, 112-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 112-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, 120-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 120-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, 128-bit tag with altered ciphertext", - "importKey step for decryption: AES-GCM 256-bit key, no additional data, 128-bit tag with altered ciphertext", - "importKey step: AES-GCM 128-bit key, 32-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, 64-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, 96-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, 104-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, 112-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, 120-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, 128-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, 32-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, 64-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, 96-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, 104-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, 112-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, 120-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, 128-bit tag without encrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, 32-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, 64-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, 96-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, 104-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, 112-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, 120-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, 128-bit tag without encrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag without encrypt usage", - "importKey step: AES-GCM 128-bit key, 32-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, 64-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, 96-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, 104-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, 112-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, 120-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, 128-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, 32-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, 64-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, 96-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, 104-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, 112-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, 120-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, 128-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, 32-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, 64-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, 96-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, 104-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, 112-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, 120-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, 128-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag with mismatched key and algorithm", - "importKey step: AES-GCM 128-bit key, 32-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, 64-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, 96-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, 104-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, 112-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, 120-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, 128-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, 32-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, 64-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, 96-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, 104-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, 112-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, 120-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, 128-bit tag without decrypt usage", - "importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, 32-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, 64-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, 96-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, 104-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, 112-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, 120-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, 128-bit tag without decrypt usage", - "importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag without decrypt usage", - "importKey step: AES-GCM 128-bit key, illegal tag length 24-bits", - "importKey step: AES-GCM 128-bit key, illegal tag length 48-bits", - "importKey step: AES-GCM 128-bit key, illegal tag length 72-bits", - "importKey step: AES-GCM 128-bit key, illegal tag length 95-bits", - "importKey step: AES-GCM 128-bit key, illegal tag length 129-bits", - "importKey step: AES-GCM 128-bit key, illegal tag length 256-bits", - "importKey step: AES-GCM 192-bit key, illegal tag length 24-bits", - "importKey step: AES-GCM 192-bit key, illegal tag length 48-bits", - "importKey step: AES-GCM 192-bit key, illegal tag length 72-bits", - "importKey step: AES-GCM 192-bit key, illegal tag length 95-bits", - "importKey step: AES-GCM 192-bit key, illegal tag length 129-bits", - "importKey step: AES-GCM 192-bit key, illegal tag length 256-bits", - "importKey step: AES-GCM 256-bit key, illegal tag length 24-bits", - "importKey step: AES-GCM 256-bit key, illegal tag length 48-bits", - "importKey step: AES-GCM 256-bit key, illegal tag length 72-bits", - "importKey step: AES-GCM 256-bit key, illegal tag length 95-bits", - "importKey step: AES-GCM 256-bit key, illegal tag length 129-bits", - "importKey step: AES-GCM 256-bit key, illegal tag length 256-bits", - "importKey step: decryption AES-GCM 128-bit key, illegal tag length 24-bits", - "importKey step: decryption AES-GCM 128-bit key, illegal tag length 48-bits", - "importKey step: decryption AES-GCM 128-bit key, illegal tag length 72-bits", - "importKey step: decryption AES-GCM 128-bit key, illegal tag length 95-bits", - "importKey step: decryption AES-GCM 128-bit key, illegal tag length 129-bits", - "importKey step: decryption AES-GCM 128-bit key, illegal tag length 256-bits", - "importKey step: decryption AES-GCM 192-bit key, illegal tag length 24-bits", - "importKey step: decryption AES-GCM 192-bit key, illegal tag length 48-bits", - "importKey step: decryption AES-GCM 192-bit key, illegal tag length 72-bits", - "importKey step: decryption AES-GCM 192-bit key, illegal tag length 95-bits", - "importKey step: decryption AES-GCM 192-bit key, illegal tag length 129-bits", - "importKey step: decryption AES-GCM 192-bit key, illegal tag length 256-bits", - "importKey step: decryption AES-GCM 256-bit key, illegal tag length 24-bits", - "importKey step: decryption AES-GCM 256-bit key, illegal tag length 48-bits", - "importKey step: decryption AES-GCM 256-bit key, illegal tag length 72-bits", - "importKey step: decryption AES-GCM 256-bit key, illegal tag length 95-bits", - "importKey step: decryption AES-GCM 256-bit key, illegal tag length 129-bits", - "importKey step: decryption AES-GCM 256-bit key, illegal tag length 256-bits" + "AES-GCM 128-bit key, 32-bit tag", + "AES-GCM 128-bit key, no additional data, 32-bit tag", + "AES-GCM 128-bit key, 64-bit tag", + "AES-GCM 128-bit key, no additional data, 64-bit tag", + "AES-GCM 128-bit key, 96-bit tag", + "AES-GCM 128-bit key, no additional data, 96-bit tag", + "AES-GCM 128-bit key, 104-bit tag", + "AES-GCM 128-bit key, no additional data, 104-bit tag", + "AES-GCM 128-bit key, 112-bit tag", + "AES-GCM 128-bit key, no additional data, 112-bit tag", + "AES-GCM 128-bit key, 120-bit tag", + "AES-GCM 128-bit key, no additional data, 120-bit tag", + "AES-GCM 128-bit key, 128-bit tag", + "AES-GCM 128-bit key, no additional data, 128-bit tag", + "AES-GCM 192-bit key, 32-bit tag", + "AES-GCM 192-bit key, no additional data, 32-bit tag", + "AES-GCM 192-bit key, 64-bit tag", + "AES-GCM 192-bit key, no additional data, 64-bit tag", + "AES-GCM 192-bit key, 96-bit tag", + "AES-GCM 192-bit key, no additional data, 96-bit tag", + "AES-GCM 192-bit key, 104-bit tag", + "AES-GCM 192-bit key, no additional data, 104-bit tag", + "AES-GCM 192-bit key, 112-bit tag", + "AES-GCM 192-bit key, no additional data, 112-bit tag", + "AES-GCM 192-bit key, 120-bit tag", + "AES-GCM 192-bit key, no additional data, 120-bit tag", + "AES-GCM 192-bit key, 128-bit tag", + "AES-GCM 192-bit key, no additional data, 128-bit tag", + "AES-GCM 256-bit key, 32-bit tag", + "AES-GCM 256-bit key, no additional data, 32-bit tag", + "AES-GCM 256-bit key, 64-bit tag", + "AES-GCM 256-bit key, no additional data, 64-bit tag", + "AES-GCM 256-bit key, 96-bit tag", + "AES-GCM 256-bit key, no additional data, 96-bit tag", + "AES-GCM 256-bit key, 104-bit tag", + "AES-GCM 256-bit key, no additional data, 104-bit tag", + "AES-GCM 256-bit key, 112-bit tag", + "AES-GCM 256-bit key, no additional data, 112-bit tag", + "AES-GCM 256-bit key, 120-bit tag", + "AES-GCM 256-bit key, no additional data, 120-bit tag", + "AES-GCM 256-bit key, 128-bit tag", + "AES-GCM 256-bit key, no additional data, 128-bit tag", + "AES-GCM 128-bit key, 32-bit tag with altered plaintext", + "AES-GCM 128-bit key, no additional data, 32-bit tag with altered plaintext", + "AES-GCM 128-bit key, 64-bit tag with altered plaintext", + "AES-GCM 128-bit key, no additional data, 64-bit tag with altered plaintext", + "AES-GCM 128-bit key, 96-bit tag with altered plaintext", + "AES-GCM 128-bit key, no additional data, 96-bit tag with altered plaintext", + "AES-GCM 128-bit key, 104-bit tag with altered plaintext", + "AES-GCM 128-bit key, no additional data, 104-bit tag with altered plaintext", + "AES-GCM 128-bit key, 112-bit tag with altered plaintext", + "AES-GCM 128-bit key, no additional data, 112-bit tag with altered plaintext", + "AES-GCM 128-bit key, 120-bit tag with altered plaintext", + "AES-GCM 128-bit key, no additional data, 120-bit tag with altered plaintext", + "AES-GCM 128-bit key, 128-bit tag with altered plaintext", + "AES-GCM 128-bit key, no additional data, 128-bit tag with altered plaintext", + "AES-GCM 192-bit key, 32-bit tag with altered plaintext", + "AES-GCM 192-bit key, no additional data, 32-bit tag with altered plaintext", + "AES-GCM 192-bit key, 64-bit tag with altered plaintext", + "AES-GCM 192-bit key, no additional data, 64-bit tag with altered plaintext", + "AES-GCM 192-bit key, 96-bit tag with altered plaintext", + "AES-GCM 192-bit key, no additional data, 96-bit tag with altered plaintext", + "AES-GCM 192-bit key, 104-bit tag with altered plaintext", + "AES-GCM 192-bit key, no additional data, 104-bit tag with altered plaintext", + "AES-GCM 192-bit key, 112-bit tag with altered plaintext", + "AES-GCM 192-bit key, no additional data, 112-bit tag with altered plaintext", + "AES-GCM 192-bit key, 120-bit tag with altered plaintext", + "AES-GCM 192-bit key, no additional data, 120-bit tag with altered plaintext", + "AES-GCM 192-bit key, 128-bit tag with altered plaintext", + "AES-GCM 192-bit key, no additional data, 128-bit tag with altered plaintext", + "AES-GCM 256-bit key, 32-bit tag with altered plaintext", + "AES-GCM 256-bit key, no additional data, 32-bit tag with altered plaintext", + "AES-GCM 256-bit key, 64-bit tag with altered plaintext", + "AES-GCM 256-bit key, no additional data, 64-bit tag with altered plaintext", + "AES-GCM 256-bit key, 96-bit tag with altered plaintext", + "AES-GCM 256-bit key, no additional data, 96-bit tag with altered plaintext", + "AES-GCM 256-bit key, 104-bit tag with altered plaintext", + "AES-GCM 256-bit key, no additional data, 104-bit tag with altered plaintext", + "AES-GCM 256-bit key, 112-bit tag with altered plaintext", + "AES-GCM 256-bit key, no additional data, 112-bit tag with altered plaintext", + "AES-GCM 256-bit key, 120-bit tag with altered plaintext", + "AES-GCM 256-bit key, no additional data, 120-bit tag with altered plaintext", + "AES-GCM 256-bit key, 128-bit tag with altered plaintext", + "AES-GCM 256-bit key, no additional data, 128-bit tag with altered plaintext", + "AES-GCM 128-bit key, 32-bit tag decryption", + "AES-GCM 128-bit key, no additional data, 32-bit tag decryption", + "AES-GCM 128-bit key, 64-bit tag decryption", + "AES-GCM 128-bit key, no additional data, 64-bit tag decryption", + "AES-GCM 128-bit key, 96-bit tag decryption", + "AES-GCM 128-bit key, no additional data, 96-bit tag decryption", + "AES-GCM 128-bit key, 104-bit tag decryption", + "AES-GCM 128-bit key, no additional data, 104-bit tag decryption", + "AES-GCM 128-bit key, 112-bit tag decryption", + "AES-GCM 128-bit key, no additional data, 112-bit tag decryption", + "AES-GCM 128-bit key, 120-bit tag decryption", + "AES-GCM 128-bit key, no additional data, 120-bit tag decryption", + "AES-GCM 128-bit key, 128-bit tag decryption", + "AES-GCM 128-bit key, no additional data, 128-bit tag decryption", + "AES-GCM 192-bit key, 32-bit tag decryption", + "AES-GCM 192-bit key, no additional data, 32-bit tag decryption", + "AES-GCM 192-bit key, 64-bit tag decryption", + "AES-GCM 192-bit key, no additional data, 64-bit tag decryption", + "AES-GCM 192-bit key, 96-bit tag decryption", + "AES-GCM 192-bit key, no additional data, 96-bit tag decryption", + "AES-GCM 192-bit key, 104-bit tag decryption", + "AES-GCM 192-bit key, no additional data, 104-bit tag decryption", + "AES-GCM 192-bit key, 112-bit tag decryption", + "AES-GCM 192-bit key, no additional data, 112-bit tag decryption", + "AES-GCM 192-bit key, 120-bit tag decryption", + "AES-GCM 192-bit key, no additional data, 120-bit tag decryption", + "AES-GCM 192-bit key, 128-bit tag decryption", + "AES-GCM 192-bit key, no additional data, 128-bit tag decryption", + "AES-GCM 256-bit key, 32-bit tag decryption", + "AES-GCM 256-bit key, no additional data, 32-bit tag decryption", + "AES-GCM 256-bit key, 64-bit tag decryption", + "AES-GCM 256-bit key, no additional data, 64-bit tag decryption", + "AES-GCM 256-bit key, 96-bit tag decryption", + "AES-GCM 256-bit key, no additional data, 96-bit tag decryption", + "AES-GCM 256-bit key, 104-bit tag decryption", + "AES-GCM 256-bit key, no additional data, 104-bit tag decryption", + "AES-GCM 256-bit key, 112-bit tag decryption", + "AES-GCM 256-bit key, no additional data, 112-bit tag decryption", + "AES-GCM 256-bit key, 120-bit tag decryption", + "AES-GCM 256-bit key, no additional data, 120-bit tag decryption", + "AES-GCM 256-bit key, 128-bit tag decryption", + "AES-GCM 256-bit key, no additional data, 128-bit tag decryption", + "AES-GCM 128-bit key, 32-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, no additional data, 32-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, 64-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, no additional data, 64-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, 96-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, no additional data, 96-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, 104-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, no additional data, 104-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, 112-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, no additional data, 112-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, 120-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, no additional data, 120-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, 128-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, no additional data, 128-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, 32-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, no additional data, 32-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, 64-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, no additional data, 64-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, 96-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, no additional data, 96-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, 104-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, no additional data, 104-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, 112-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, no additional data, 112-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, 120-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, no additional data, 120-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, 128-bit tag decryption with altered ciphertext", + "AES-GCM 192-bit key, no additional data, 128-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, 32-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, no additional data, 32-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, 64-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, no additional data, 64-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, 96-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, no additional data, 96-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, 104-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, no additional data, 104-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, 112-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, no additional data, 112-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, 120-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, no additional data, 120-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, 128-bit tag decryption with altered ciphertext", + "AES-GCM 256-bit key, no additional data, 128-bit tag decryption with altered ciphertext", + "AES-GCM 128-bit key, 32-bit tag without encrypt usage", + "AES-GCM 128-bit key, no additional data, 32-bit tag without encrypt usage", + "AES-GCM 128-bit key, 64-bit tag without encrypt usage", + "AES-GCM 128-bit key, no additional data, 64-bit tag without encrypt usage", + "AES-GCM 128-bit key, 96-bit tag without encrypt usage", + "AES-GCM 128-bit key, no additional data, 96-bit tag without encrypt usage", + "AES-GCM 128-bit key, 104-bit tag without encrypt usage", + "AES-GCM 128-bit key, no additional data, 104-bit tag without encrypt usage", + "AES-GCM 128-bit key, 112-bit tag without encrypt usage", + "AES-GCM 128-bit key, no additional data, 112-bit tag without encrypt usage", + "AES-GCM 128-bit key, 120-bit tag without encrypt usage", + "AES-GCM 128-bit key, no additional data, 120-bit tag without encrypt usage", + "AES-GCM 128-bit key, 128-bit tag without encrypt usage", + "AES-GCM 128-bit key, no additional data, 128-bit tag without encrypt usage", + "AES-GCM 192-bit key, 32-bit tag without encrypt usage", + "AES-GCM 192-bit key, no additional data, 32-bit tag without encrypt usage", + "AES-GCM 192-bit key, 64-bit tag without encrypt usage", + "AES-GCM 192-bit key, no additional data, 64-bit tag without encrypt usage", + "AES-GCM 192-bit key, 96-bit tag without encrypt usage", + "AES-GCM 192-bit key, no additional data, 96-bit tag without encrypt usage", + "AES-GCM 192-bit key, 104-bit tag without encrypt usage", + "AES-GCM 192-bit key, no additional data, 104-bit tag without encrypt usage", + "AES-GCM 192-bit key, 112-bit tag without encrypt usage", + "AES-GCM 192-bit key, no additional data, 112-bit tag without encrypt usage", + "AES-GCM 192-bit key, 120-bit tag without encrypt usage", + "AES-GCM 192-bit key, no additional data, 120-bit tag without encrypt usage", + "AES-GCM 192-bit key, 128-bit tag without encrypt usage", + "AES-GCM 192-bit key, no additional data, 128-bit tag without encrypt usage", + "AES-GCM 256-bit key, 32-bit tag without encrypt usage", + "AES-GCM 256-bit key, no additional data, 32-bit tag without encrypt usage", + "AES-GCM 256-bit key, 64-bit tag without encrypt usage", + "AES-GCM 256-bit key, no additional data, 64-bit tag without encrypt usage", + "AES-GCM 256-bit key, 96-bit tag without encrypt usage", + "AES-GCM 256-bit key, no additional data, 96-bit tag without encrypt usage", + "AES-GCM 256-bit key, 104-bit tag without encrypt usage", + "AES-GCM 256-bit key, no additional data, 104-bit tag without encrypt usage", + "AES-GCM 256-bit key, 112-bit tag without encrypt usage", + "AES-GCM 256-bit key, no additional data, 112-bit tag without encrypt usage", + "AES-GCM 256-bit key, 120-bit tag without encrypt usage", + "AES-GCM 256-bit key, no additional data, 120-bit tag without encrypt usage", + "AES-GCM 256-bit key, 128-bit tag without encrypt usage", + "AES-GCM 256-bit key, no additional data, 128-bit tag without encrypt usage", + "AES-GCM 128-bit key, 32-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, no additional data, 32-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, 64-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, no additional data, 64-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, 96-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, no additional data, 96-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, 104-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, no additional data, 104-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, 112-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, no additional data, 112-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, 120-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, no additional data, 120-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, 128-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, no additional data, 128-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, 32-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, no additional data, 32-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, 64-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, no additional data, 64-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, 96-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, no additional data, 96-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, 104-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, no additional data, 104-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, 112-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, no additional data, 112-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, 120-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, no additional data, 120-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, 128-bit tag with mismatched key and algorithm", + "AES-GCM 192-bit key, no additional data, 128-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, 32-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, no additional data, 32-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, 64-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, no additional data, 64-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, 96-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, no additional data, 96-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, 104-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, no additional data, 104-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, 112-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, no additional data, 112-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, 120-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, no additional data, 120-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, 128-bit tag with mismatched key and algorithm", + "AES-GCM 256-bit key, no additional data, 128-bit tag with mismatched key and algorithm", + "AES-GCM 128-bit key, 32-bit tag without decrypt usage", + "AES-GCM 128-bit key, no additional data, 32-bit tag without decrypt usage", + "AES-GCM 128-bit key, 64-bit tag without decrypt usage", + "AES-GCM 128-bit key, no additional data, 64-bit tag without decrypt usage", + "AES-GCM 128-bit key, 96-bit tag without decrypt usage", + "AES-GCM 128-bit key, no additional data, 96-bit tag without decrypt usage", + "AES-GCM 128-bit key, 104-bit tag without decrypt usage", + "AES-GCM 128-bit key, no additional data, 104-bit tag without decrypt usage", + "AES-GCM 128-bit key, 112-bit tag without decrypt usage", + "AES-GCM 128-bit key, no additional data, 112-bit tag without decrypt usage", + "AES-GCM 128-bit key, 120-bit tag without decrypt usage", + "AES-GCM 128-bit key, no additional data, 120-bit tag without decrypt usage", + "AES-GCM 128-bit key, 128-bit tag without decrypt usage", + "AES-GCM 128-bit key, no additional data, 128-bit tag without decrypt usage", + "AES-GCM 192-bit key, 32-bit tag without decrypt usage", + "AES-GCM 192-bit key, no additional data, 32-bit tag without decrypt usage", + "AES-GCM 192-bit key, 64-bit tag without decrypt usage", + "AES-GCM 192-bit key, no additional data, 64-bit tag without decrypt usage", + "AES-GCM 192-bit key, 96-bit tag without decrypt usage", + "AES-GCM 192-bit key, no additional data, 96-bit tag without decrypt usage", + "AES-GCM 192-bit key, 104-bit tag without decrypt usage", + "AES-GCM 192-bit key, no additional data, 104-bit tag without decrypt usage", + "AES-GCM 192-bit key, 112-bit tag without decrypt usage", + "AES-GCM 192-bit key, no additional data, 112-bit tag without decrypt usage", + "AES-GCM 192-bit key, 120-bit tag without decrypt usage", + "AES-GCM 192-bit key, no additional data, 120-bit tag without decrypt usage", + "AES-GCM 192-bit key, 128-bit tag without decrypt usage", + "AES-GCM 192-bit key, no additional data, 128-bit tag without decrypt usage", + "AES-GCM 256-bit key, 32-bit tag without decrypt usage", + "AES-GCM 256-bit key, no additional data, 32-bit tag without decrypt usage", + "AES-GCM 256-bit key, 64-bit tag without decrypt usage", + "AES-GCM 256-bit key, no additional data, 64-bit tag without decrypt usage", + "AES-GCM 256-bit key, 96-bit tag without decrypt usage", + "AES-GCM 256-bit key, no additional data, 96-bit tag without decrypt usage", + "AES-GCM 256-bit key, 104-bit tag without decrypt usage", + "AES-GCM 256-bit key, no additional data, 104-bit tag without decrypt usage", + "AES-GCM 256-bit key, 112-bit tag without decrypt usage", + "AES-GCM 256-bit key, no additional data, 112-bit tag without decrypt usage", + "AES-GCM 256-bit key, 120-bit tag without decrypt usage", + "AES-GCM 256-bit key, no additional data, 120-bit tag without decrypt usage", + "AES-GCM 256-bit key, 128-bit tag without decrypt usage", + "AES-GCM 256-bit key, no additional data, 128-bit tag without decrypt usage", + "AES-GCM 128-bit key, illegal tag length 24-bits", + "AES-GCM 128-bit key, illegal tag length 48-bits", + "AES-GCM 128-bit key, illegal tag length 72-bits", + "AES-GCM 128-bit key, illegal tag length 95-bits", + "AES-GCM 128-bit key, illegal tag length 129-bits", + "AES-GCM 128-bit key, illegal tag length 256-bits", + "AES-GCM 192-bit key, illegal tag length 24-bits", + "AES-GCM 192-bit key, illegal tag length 48-bits", + "AES-GCM 192-bit key, illegal tag length 72-bits", + "AES-GCM 192-bit key, illegal tag length 95-bits", + "AES-GCM 192-bit key, illegal tag length 129-bits", + "AES-GCM 192-bit key, illegal tag length 256-bits", + "AES-GCM 256-bit key, illegal tag length 24-bits", + "AES-GCM 256-bit key, illegal tag length 48-bits", + "AES-GCM 256-bit key, illegal tag length 72-bits", + "AES-GCM 256-bit key, illegal tag length 95-bits", + "AES-GCM 256-bit key, illegal tag length 129-bits", + "AES-GCM 256-bit key, illegal tag length 256-bits", + "AES-GCM 128-bit key, illegal tag length 24-bits decryption", + "AES-GCM 128-bit key, illegal tag length 48-bits decryption", + "AES-GCM 128-bit key, illegal tag length 72-bits decryption", + "AES-GCM 128-bit key, illegal tag length 95-bits decryption", + "AES-GCM 128-bit key, illegal tag length 129-bits decryption", + "AES-GCM 128-bit key, illegal tag length 256-bits decryption", + "AES-GCM 192-bit key, illegal tag length 24-bits decryption", + "AES-GCM 192-bit key, illegal tag length 48-bits decryption", + "AES-GCM 192-bit key, illegal tag length 72-bits decryption", + "AES-GCM 192-bit key, illegal tag length 95-bits decryption", + "AES-GCM 192-bit key, illegal tag length 129-bits decryption", + "AES-GCM 192-bit key, illegal tag length 256-bits decryption", + "AES-GCM 256-bit key, illegal tag length 24-bits decryption", + "AES-GCM 256-bit key, illegal tag length 48-bits decryption", + "AES-GCM 256-bit key, illegal tag length 72-bits decryption", + "AES-GCM 256-bit key, illegal tag length 95-bits decryption", + "AES-GCM 256-bit key, illegal tag length 129-bits decryption", + "AES-GCM 256-bit key, illegal tag length 256-bits decryption" ], "rsa_oaep.https.any.html": [ "importVectorKeys step: RSA-OAEP with SHA-1 and no label decryption", @@ -14130,295 +4972,151 @@ "Good parameters: 4096 bits (jwk, object(kty, n, e, d, p, q, dp, dq, qi), {hash: SHA-512, name: RSASSA-PKCS1-v1_5}, false, [sign])" ], "symmetric_importKey.https.any.html": [ - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, true, [encrypt])", "Good parameters: 128 bits (jwk, {alg: A128CTR, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CTR}, true, [encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, false, [encrypt])", "Good parameters: 128 bits (jwk, {alg: A128CTR, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CTR}, false, [encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, true, [decrypt, encrypt])", "Good parameters: 128 bits (jwk, {alg: A128CTR, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CTR}, true, [decrypt, encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, false, [decrypt, encrypt])", "Good parameters: 128 bits (jwk, {alg: A128CTR, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CTR}, false, [decrypt, encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, true, [decrypt])", "Good parameters: 128 bits (jwk, {alg: A128CTR, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CTR}, true, [decrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, false, [decrypt])", "Good parameters: 128 bits (jwk, {alg: A128CTR, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CTR}, false, [decrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, true, [encrypt])", "Good parameters: 192 bits (jwk, {alg: A192CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CTR}, true, [encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, false, [encrypt])", "Good parameters: 192 bits (jwk, {alg: A192CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CTR}, false, [encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, true, [decrypt, encrypt])", "Good parameters: 192 bits (jwk, {alg: A192CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CTR}, true, [decrypt, encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, false, [decrypt, encrypt])", "Good parameters: 192 bits (jwk, {alg: A192CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CTR}, false, [decrypt, encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, true, [decrypt])", "Good parameters: 192 bits (jwk, {alg: A192CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CTR}, true, [decrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, false, [decrypt])", "Good parameters: 192 bits (jwk, {alg: A192CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CTR}, false, [decrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, true, [encrypt])", "Good parameters: 256 bits (jwk, {alg: A256CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CTR}, true, [encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, false, [encrypt])", "Good parameters: 256 bits (jwk, {alg: A256CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CTR}, false, [encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, true, [decrypt, encrypt])", "Good parameters: 256 bits (jwk, {alg: A256CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CTR}, true, [decrypt, encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, false, [decrypt, encrypt])", "Good parameters: 256 bits (jwk, {alg: A256CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CTR}, false, [decrypt, encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, true, [decrypt])", "Good parameters: 256 bits (jwk, {alg: A256CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CTR}, true, [decrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, false, [decrypt])", "Good parameters: 256 bits (jwk, {alg: A256CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CTR}, false, [decrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, true, [encrypt])", "Good parameters: 128 bits (jwk, {alg: A128CBC, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CBC}, true, [encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, false, [encrypt])", "Good parameters: 128 bits (jwk, {alg: A128CBC, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CBC}, false, [encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, true, [decrypt, encrypt])", "Good parameters: 128 bits (jwk, {alg: A128CBC, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CBC}, true, [decrypt, encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, false, [decrypt, encrypt])", "Good parameters: 128 bits (jwk, {alg: A128CBC, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CBC}, false, [decrypt, encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, true, [decrypt])", "Good parameters: 128 bits (jwk, {alg: A128CBC, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CBC}, true, [decrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, false, [decrypt])", "Good parameters: 128 bits (jwk, {alg: A128CBC, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CBC}, false, [decrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, true, [encrypt])", "Good parameters: 192 bits (jwk, {alg: A192CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CBC}, true, [encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, false, [encrypt])", "Good parameters: 192 bits (jwk, {alg: A192CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CBC}, false, [encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, true, [decrypt, encrypt])", "Good parameters: 192 bits (jwk, {alg: A192CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CBC}, true, [decrypt, encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, false, [decrypt, encrypt])", "Good parameters: 192 bits (jwk, {alg: A192CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CBC}, false, [decrypt, encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, true, [decrypt])", "Good parameters: 192 bits (jwk, {alg: A192CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CBC}, true, [decrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, false, [decrypt])", "Good parameters: 192 bits (jwk, {alg: A192CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CBC}, false, [decrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, true, [encrypt])", "Good parameters: 256 bits (jwk, {alg: A256CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CBC}, true, [encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, false, [encrypt])", "Good parameters: 256 bits (jwk, {alg: A256CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CBC}, false, [encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, true, [decrypt, encrypt])", "Good parameters: 256 bits (jwk, {alg: A256CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CBC}, true, [decrypt, encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, false, [decrypt, encrypt])", "Good parameters: 256 bits (jwk, {alg: A256CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CBC}, false, [decrypt, encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, true, [decrypt])", "Good parameters: 256 bits (jwk, {alg: A256CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CBC}, true, [decrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, false, [decrypt])", "Good parameters: 256 bits (jwk, {alg: A256CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CBC}, false, [decrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [encrypt])", "Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, true, [encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, false, [encrypt])", "Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, false, [encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [decrypt, encrypt])", "Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, true, [decrypt, encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, false, [decrypt, encrypt])", "Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, false, [decrypt, encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [decrypt])", "Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, true, [decrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, false, [decrypt])", "Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, false, [decrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [encrypt])", "Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, true, [encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, false, [encrypt])", "Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, false, [encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [decrypt, encrypt])", "Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, true, [decrypt, encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, false, [decrypt, encrypt])", "Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, false, [decrypt, encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [decrypt])", "Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, true, [decrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, false, [decrypt])", "Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, false, [decrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [encrypt])", "Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, true, [encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, false, [encrypt])", "Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, false, [encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [decrypt, encrypt])", "Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, true, [decrypt, encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, false, [decrypt, encrypt])", "Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, false, [decrypt, encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [decrypt])", "Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, true, [decrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, false, [decrypt])", "Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, false, [decrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, true, [wrapKey])", "Good parameters: 128 bits (jwk, {alg: A128KW, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-KW}, true, [wrapKey])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, false, [wrapKey])", "Good parameters: 128 bits (jwk, {alg: A128KW, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-KW}, false, [wrapKey])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, true, [unwrapKey, wrapKey])", "Good parameters: 128 bits (jwk, {alg: A128KW, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-KW}, true, [unwrapKey, wrapKey])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, false, [unwrapKey, wrapKey])", "Good parameters: 128 bits (jwk, {alg: A128KW, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-KW}, false, [unwrapKey, wrapKey])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, true, [unwrapKey])", "Good parameters: 128 bits (jwk, {alg: A128KW, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-KW}, true, [unwrapKey])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, false, [unwrapKey])", "Good parameters: 128 bits (jwk, {alg: A128KW, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-KW}, false, [unwrapKey])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, true, [wrapKey])", "Good parameters: 192 bits (jwk, {alg: A192KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-KW}, true, [wrapKey])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, false, [wrapKey])", "Good parameters: 192 bits (jwk, {alg: A192KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-KW}, false, [wrapKey])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, true, [unwrapKey, wrapKey])", "Good parameters: 192 bits (jwk, {alg: A192KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-KW}, true, [unwrapKey, wrapKey])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, false, [unwrapKey, wrapKey])", "Good parameters: 192 bits (jwk, {alg: A192KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-KW}, false, [unwrapKey, wrapKey])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, true, [unwrapKey])", "Good parameters: 192 bits (jwk, {alg: A192KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-KW}, true, [unwrapKey])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, false, [unwrapKey])", "Good parameters: 192 bits (jwk, {alg: A192KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-KW}, false, [unwrapKey])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, true, [wrapKey])", "Good parameters: 256 bits (jwk, {alg: A256KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-KW}, true, [wrapKey])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, false, [wrapKey])", "Good parameters: 256 bits (jwk, {alg: A256KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-KW}, false, [wrapKey])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, true, [unwrapKey, wrapKey])", "Good parameters: 256 bits (jwk, {alg: A256KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-KW}, true, [unwrapKey, wrapKey])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, false, [unwrapKey, wrapKey])", "Good parameters: 256 bits (jwk, {alg: A256KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-KW}, false, [unwrapKey, wrapKey])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, true, [unwrapKey])", "Good parameters: 256 bits (jwk, {alg: A256KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-KW}, true, [unwrapKey])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, false, [unwrapKey])", "Good parameters: 256 bits (jwk, {alg: A256KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-KW}, false, [unwrapKey])" ], "symmetric_importKey.https.any.worker.html": [ - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, true, [encrypt])", "Good parameters: 128 bits (jwk, {alg: A128CTR, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CTR}, true, [encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, false, [encrypt])", "Good parameters: 128 bits (jwk, {alg: A128CTR, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CTR}, false, [encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, true, [decrypt, encrypt])", "Good parameters: 128 bits (jwk, {alg: A128CTR, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CTR}, true, [decrypt, encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, false, [decrypt, encrypt])", "Good parameters: 128 bits (jwk, {alg: A128CTR, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CTR}, false, [decrypt, encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, true, [decrypt])", "Good parameters: 128 bits (jwk, {alg: A128CTR, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CTR}, true, [decrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, false, [decrypt])", "Good parameters: 128 bits (jwk, {alg: A128CTR, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CTR}, false, [decrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, true, [encrypt])", "Good parameters: 192 bits (jwk, {alg: A192CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CTR}, true, [encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, false, [encrypt])", "Good parameters: 192 bits (jwk, {alg: A192CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CTR}, false, [encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, true, [decrypt, encrypt])", "Good parameters: 192 bits (jwk, {alg: A192CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CTR}, true, [decrypt, encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, false, [decrypt, encrypt])", "Good parameters: 192 bits (jwk, {alg: A192CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CTR}, false, [decrypt, encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, true, [decrypt])", "Good parameters: 192 bits (jwk, {alg: A192CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CTR}, true, [decrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, false, [decrypt])", "Good parameters: 192 bits (jwk, {alg: A192CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CTR}, false, [decrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, true, [encrypt])", "Good parameters: 256 bits (jwk, {alg: A256CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CTR}, true, [encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, false, [encrypt])", "Good parameters: 256 bits (jwk, {alg: A256CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CTR}, false, [encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, true, [decrypt, encrypt])", "Good parameters: 256 bits (jwk, {alg: A256CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CTR}, true, [decrypt, encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, false, [decrypt, encrypt])", "Good parameters: 256 bits (jwk, {alg: A256CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CTR}, false, [decrypt, encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, true, [decrypt])", "Good parameters: 256 bits (jwk, {alg: A256CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CTR}, true, [decrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CTR}, false, [decrypt])", "Good parameters: 256 bits (jwk, {alg: A256CTR, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CTR}, false, [decrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, true, [encrypt])", "Good parameters: 128 bits (jwk, {alg: A128CBC, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CBC}, true, [encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, false, [encrypt])", "Good parameters: 128 bits (jwk, {alg: A128CBC, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CBC}, false, [encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, true, [decrypt, encrypt])", "Good parameters: 128 bits (jwk, {alg: A128CBC, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CBC}, true, [decrypt, encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, false, [decrypt, encrypt])", "Good parameters: 128 bits (jwk, {alg: A128CBC, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CBC}, false, [decrypt, encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, true, [decrypt])", "Good parameters: 128 bits (jwk, {alg: A128CBC, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CBC}, true, [decrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, false, [decrypt])", "Good parameters: 128 bits (jwk, {alg: A128CBC, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-CBC}, false, [decrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, true, [encrypt])", "Good parameters: 192 bits (jwk, {alg: A192CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CBC}, true, [encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, false, [encrypt])", "Good parameters: 192 bits (jwk, {alg: A192CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CBC}, false, [encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, true, [decrypt, encrypt])", "Good parameters: 192 bits (jwk, {alg: A192CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CBC}, true, [decrypt, encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, false, [decrypt, encrypt])", "Good parameters: 192 bits (jwk, {alg: A192CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CBC}, false, [decrypt, encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, true, [decrypt])", "Good parameters: 192 bits (jwk, {alg: A192CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CBC}, true, [decrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, false, [decrypt])", "Good parameters: 192 bits (jwk, {alg: A192CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-CBC}, false, [decrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, true, [encrypt])", "Good parameters: 256 bits (jwk, {alg: A256CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CBC}, true, [encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, false, [encrypt])", "Good parameters: 256 bits (jwk, {alg: A256CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CBC}, false, [encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, true, [decrypt, encrypt])", "Good parameters: 256 bits (jwk, {alg: A256CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CBC}, true, [decrypt, encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, false, [decrypt, encrypt])", "Good parameters: 256 bits (jwk, {alg: A256CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CBC}, false, [decrypt, encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, true, [decrypt])", "Good parameters: 256 bits (jwk, {alg: A256CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CBC}, true, [decrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-CBC}, false, [decrypt])", "Good parameters: 256 bits (jwk, {alg: A256CBC, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-CBC}, false, [decrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [encrypt])", "Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, true, [encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, false, [encrypt])", "Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, false, [encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [decrypt, encrypt])", "Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, true, [decrypt, encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, false, [decrypt, encrypt])", "Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, false, [decrypt, encrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [decrypt])", "Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, true, [decrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, false, [decrypt])", "Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, false, [decrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [encrypt])", "Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, true, [encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, false, [encrypt])", "Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, false, [encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [decrypt, encrypt])", "Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, true, [decrypt, encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, false, [decrypt, encrypt])", "Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, false, [decrypt, encrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [decrypt])", "Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, true, [decrypt])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, false, [decrypt])", "Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, false, [decrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [encrypt])", "Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, true, [encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, false, [encrypt])", "Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, false, [encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [decrypt, encrypt])", "Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, true, [decrypt, encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, false, [decrypt, encrypt])", "Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, false, [decrypt, encrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [decrypt])", "Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, true, [decrypt])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, false, [decrypt])", "Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, false, [decrypt])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, true, [wrapKey])", "Good parameters: 128 bits (jwk, {alg: A128KW, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-KW}, true, [wrapKey])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, false, [wrapKey])", "Good parameters: 128 bits (jwk, {alg: A128KW, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-KW}, false, [wrapKey])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, true, [unwrapKey, wrapKey])", "Good parameters: 128 bits (jwk, {alg: A128KW, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-KW}, true, [unwrapKey, wrapKey])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, false, [unwrapKey, wrapKey])", "Good parameters: 128 bits (jwk, {alg: A128KW, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-KW}, false, [unwrapKey, wrapKey])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, true, [unwrapKey])", "Good parameters: 128 bits (jwk, {alg: A128KW, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-KW}, true, [unwrapKey])", - "Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, false, [unwrapKey])", "Good parameters: 128 bits (jwk, {alg: A128KW, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-KW}, false, [unwrapKey])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, true, [wrapKey])", "Good parameters: 192 bits (jwk, {alg: A192KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-KW}, true, [wrapKey])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, false, [wrapKey])", "Good parameters: 192 bits (jwk, {alg: A192KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-KW}, false, [wrapKey])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, true, [unwrapKey, wrapKey])", "Good parameters: 192 bits (jwk, {alg: A192KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-KW}, true, [unwrapKey, wrapKey])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, false, [unwrapKey, wrapKey])", "Good parameters: 192 bits (jwk, {alg: A192KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-KW}, false, [unwrapKey, wrapKey])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, true, [unwrapKey])", "Good parameters: 192 bits (jwk, {alg: A192KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-KW}, true, [unwrapKey])", - "Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, false, [unwrapKey])", "Good parameters: 192 bits (jwk, {alg: A192KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-KW}, false, [unwrapKey])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, true, [wrapKey])", "Good parameters: 256 bits (jwk, {alg: A256KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-KW}, true, [wrapKey])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, false, [wrapKey])", "Good parameters: 256 bits (jwk, {alg: A256KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-KW}, false, [wrapKey])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, true, [unwrapKey, wrapKey])", "Good parameters: 256 bits (jwk, {alg: A256KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-KW}, true, [unwrapKey, wrapKey])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, false, [unwrapKey, wrapKey])", "Good parameters: 256 bits (jwk, {alg: A256KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-KW}, false, [unwrapKey, wrapKey])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, true, [unwrapKey])", "Good parameters: 256 bits (jwk, {alg: A256KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-KW}, true, [unwrapKey])", - "Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-KW}, false, [unwrapKey])", "Good parameters: 256 bits (jwk, {alg: A256KW, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-KW}, false, [unwrapKey])" ] },