diff --git a/doc/api/crypto.md b/doc/api/crypto.md index f76c9aaf8a1f49..f9594e3a4ac5e1 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -4209,6 +4209,9 @@ web-compatible code use [`crypto.webcrypto.getRandomValues()`][] instead. * `digest` {string} The digest algorithm to use. * `ikm` {string|ArrayBuffer|Buffer|TypedArray|DataView|KeyObject} The input - keying material. It must be at least one byte in length. + keying material. Must be provided but can be zero-length. * `salt` {string|ArrayBuffer|Buffer|TypedArray|DataView} The salt value. Must be provided but can be zero-length. * `info` {string|ArrayBuffer|Buffer|TypedArray|DataView} Additional info value. diff --git a/lib/internal/crypto/mac.js b/lib/internal/crypto/mac.js index 3054f66b27d4f2..310d0538eaaf06 100644 --- a/lib/internal/crypto/mac.js +++ b/lib/internal/crypto/mac.js @@ -100,9 +100,6 @@ async function hmacImportKey( case 'raw': { const checkLength = keyData.byteLength * 8; - if (checkLength === 0 || algorithm.length === 0) - throw lazyDOMException('Zero-length key is not supported', 'DataError'); - // The Web Crypto spec allows for key lengths that are not multiples of // 8. We don't. Our check here is stricter than that defined by the spec // in that we require that algorithm.length match keyData.length * 8 if diff --git a/lib/internal/crypto/webcrypto.js b/lib/internal/crypto/webcrypto.js index b7760efaa234c8..df4bb072043def 100644 --- a/lib/internal/crypto/webcrypto.js +++ b/lib/internal/crypto/webcrypto.js @@ -494,9 +494,6 @@ async function importGenericSecretKey( const checkLength = keyData.byteLength * 8; - if (checkLength === 0 || length === 0) - throw lazyDOMException('Zero-length key is not supported', 'DataError'); - // The Web Crypto spec allows for key lengths that are not multiples of // 8. We don't. Our check here is stricter than that defined by the spec // in that we require that algorithm.length match keyData.length * 8 if diff --git a/src/crypto/crypto_hkdf.cc b/src/crypto/crypto_hkdf.cc index 79a84c12f55853..bff8cc60c4c13b 100644 --- a/src/crypto/crypto_hkdf.cc +++ b/src/crypto/crypto_hkdf.cc @@ -103,20 +103,58 @@ bool HKDFTraits::DeriveBits( EVPKeyCtxPointer ctx = EVPKeyCtxPointer(EVP_PKEY_CTX_new_id(EVP_PKEY_HKDF, nullptr)); if (!ctx || !EVP_PKEY_derive_init(ctx.get()) || - !EVP_PKEY_CTX_hkdf_mode(ctx.get(), - EVP_PKEY_HKDEF_MODE_EXTRACT_AND_EXPAND) || !EVP_PKEY_CTX_set_hkdf_md(ctx.get(), params.digest) || - !EVP_PKEY_CTX_set1_hkdf_salt( - ctx.get(), params.salt.data(), params.salt.size()) || - !EVP_PKEY_CTX_set1_hkdf_key( - ctx.get(), - reinterpret_cast(params.key->GetSymmetricKey()), - params.key->GetSymmetricKeySize()) || !EVP_PKEY_CTX_add1_hkdf_info( ctx.get(), params.info.data(), params.info.size())) { return false; } + // TODO(panva): Once support for OpenSSL 1.1.1 is dropped the whole + // of HKDFTraits::DeriveBits can be refactored to use + // EVP_KDF which does handle zero length key. + if (params.key->GetSymmetricKeySize() != 0) { + if (!EVP_PKEY_CTX_hkdf_mode(ctx.get(), + EVP_PKEY_HKDEF_MODE_EXTRACT_AND_EXPAND) || + !EVP_PKEY_CTX_set1_hkdf_salt( + ctx.get(), params.salt.data(), params.salt.size()) || + !EVP_PKEY_CTX_set1_hkdf_key(ctx.get(), + reinterpret_cast( + params.key->GetSymmetricKey()), + params.key->GetSymmetricKeySize())) { + return false; + } + } else { + // Workaround for EVP_PKEY_derive HKDF not handling zero length keys. + unsigned char temp_key[EVP_MAX_MD_SIZE]; + unsigned int len = sizeof(temp_key); + if (params.salt.size() != 0) { + if (HMAC(params.digest, + params.salt.data(), + params.salt.size(), + nullptr, + 0, + temp_key, + &len) == nullptr) { + return false; + } + } else { + char salt[EVP_MAX_MD_SIZE] = {0}; + if (HMAC(params.digest, + salt, + EVP_MD_size(params.digest), + nullptr, + 0, + temp_key, + &len) == nullptr) { + return false; + } + } + if (!EVP_PKEY_CTX_hkdf_mode(ctx.get(), EVP_PKEY_HKDEF_MODE_EXPAND_ONLY) || + !EVP_PKEY_CTX_set1_hkdf_key(ctx.get(), temp_key, len)) { + return false; + } + } + size_t length = params.length; ByteSource::Builder buf(length); if (EVP_PKEY_derive(ctx.get(), buf.data(), &length) <= 0) diff --git a/test/parallel/test-webcrypto-export-import.js b/test/parallel/test-webcrypto-export-import.js index 02e178f72628d5..8647192ed85e47 100644 --- a/test/parallel/test-webcrypto-export-import.js +++ b/test/parallel/test-webcrypto-export-import.js @@ -42,15 +42,6 @@ const { subtle } = webcrypto; name: 'SyntaxError', message: 'Unsupported key usage for an HMAC key' }); - await assert.rejects( - subtle.importKey('raw', keyData, { - name: 'HMAC', - hash: 'SHA-256', - length: 0 - }, false, ['sign', 'verify']), { - name: 'DataError', - message: 'Zero-length key is not supported' - }); await assert.rejects( subtle.importKey('raw', keyData, { name: 'HMAC', diff --git a/test/wpt/status/WebCryptoAPI.json b/test/wpt/status/WebCryptoAPI.json index 14e1cd0e3e222a..91e4905ef24e4b 100644 --- a/test/wpt/status/WebCryptoAPI.json +++ b/test/wpt/status/WebCryptoAPI.json @@ -34,598 +34,22 @@ "long derivedKey, empty salt, SHA-1, with empty info with null length", "long derivedKey, empty salt, SHA-256, with normal info with null length", "long derivedKey, empty salt, SHA-256, with empty info with null length", - "empty derivedKey, normal salt, SHA-384, with normal info", - "empty derivedKey, normal salt, SHA-384, with normal info with 0 length", - "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: 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: 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-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: 192 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", "empty derivedKey, normal salt, SHA-384, with normal info with null length", - "empty derivedKey, normal salt, SHA-384, with normal info with non-multiple of 8 length", - "empty derivedKey, normal salt, SHA-384, with normal info with missing deriveBits usage", - "empty derivedKey, normal salt, SHA-384, with empty info", - "empty derivedKey, normal salt, SHA-384, with empty info with 0 length", - "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: 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: 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-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: 192 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", "empty derivedKey, normal salt, SHA-384, with empty info with null length", - "empty derivedKey, normal salt, SHA-384, with empty info with non-multiple of 8 length", - "empty derivedKey, normal salt, SHA-384, with empty info with missing deriveBits usage", - "empty derivedKey, normal salt, SHA-512, with normal info", - "empty derivedKey, normal salt, SHA-512, with normal info with 0 length", - "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: 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: 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-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: 192 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", "empty derivedKey, normal salt, SHA-512, with normal info with null length", - "empty derivedKey, normal salt, SHA-512, with normal info with non-multiple of 8 length", - "empty derivedKey, normal salt, SHA-512, with normal info with missing deriveBits usage", - "empty derivedKey, normal salt, SHA-512, with empty info", - "empty derivedKey, normal salt, SHA-512, with empty info with 0 length", - "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: 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: 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-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: 192 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", "empty derivedKey, normal salt, SHA-512, with empty info with null length", - "empty derivedKey, normal salt, SHA-512, with empty info with non-multiple of 8 length", - "empty derivedKey, normal salt, SHA-512, with empty info with missing deriveBits usage", - "empty derivedKey, normal salt, SHA-1, with normal info", - "empty derivedKey, normal salt, SHA-1, with normal info with 0 length", - "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: 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: 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-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: 192 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", "empty derivedKey, normal salt, SHA-1, with normal info with null length", - "empty derivedKey, normal salt, SHA-1, with normal info with non-multiple of 8 length", - "empty derivedKey, normal salt, SHA-1, with normal info with missing deriveBits usage", - "empty derivedKey, normal salt, SHA-1, with empty info", - "empty derivedKey, normal salt, SHA-1, with empty info with 0 length", - "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: 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: 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-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: 192 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", "empty derivedKey, normal salt, SHA-1, with empty info with null length", - "empty derivedKey, normal salt, SHA-1, with empty info with non-multiple of 8 length", - "empty derivedKey, normal salt, SHA-1, with empty info with missing deriveBits usage", - "empty derivedKey, normal salt, SHA-256, with normal info", - "empty derivedKey, normal salt, SHA-256, with normal info with 0 length", - "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: 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: 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-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: 192 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", "empty derivedKey, normal salt, SHA-256, with normal info with null length", - "empty derivedKey, normal salt, SHA-256, with normal info with non-multiple of 8 length", - "empty derivedKey, normal salt, SHA-256, with normal info with missing deriveBits usage", - "empty derivedKey, normal salt, SHA-256, with empty info", - "empty derivedKey, normal salt, SHA-256, with empty info with 0 length", - "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: 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: 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-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", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", "empty derivedKey, normal salt, SHA-256, with empty info with null length", - "empty derivedKey, normal salt, SHA-256, with empty info with non-multiple of 8 length", - "empty derivedKey, normal salt, SHA-256, with empty info with missing deriveBits usage", - "empty derivedKey, empty salt, SHA-384, with normal info", - "empty derivedKey, empty salt, SHA-384, with normal info with 0 length", - "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: 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: 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-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: 192 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", "empty derivedKey, empty salt, SHA-384, with normal info with null length", - "empty derivedKey, empty salt, SHA-384, with normal info with non-multiple of 8 length", - "empty derivedKey, empty salt, SHA-384, with normal info with missing deriveBits usage", - "empty derivedKey, empty salt, SHA-384, with empty info", - "empty derivedKey, empty salt, SHA-384, with empty info with 0 length", - "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: 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: 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-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: 192 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", "empty derivedKey, empty salt, SHA-384, with empty info with null length", - "empty derivedKey, empty salt, SHA-384, with empty info with non-multiple of 8 length", - "empty derivedKey, empty salt, SHA-384, with empty info with missing deriveBits usage", - "empty derivedKey, empty salt, SHA-512, with normal info", - "empty derivedKey, empty salt, SHA-512, with normal info with 0 length", - "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: 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: 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-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: 192 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", "empty derivedKey, empty salt, SHA-512, with normal info with null length", - "empty derivedKey, empty salt, SHA-512, with normal info with non-multiple of 8 length", - "empty derivedKey, empty salt, SHA-512, with normal info with missing deriveBits usage", - "empty derivedKey, empty salt, SHA-512, with empty info", - "empty derivedKey, empty salt, SHA-512, with empty info with 0 length", - "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: 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: 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-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: 192 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", "empty derivedKey, empty salt, SHA-512, with empty info with null length", - "empty derivedKey, empty salt, SHA-512, with empty info with non-multiple of 8 length", - "empty derivedKey, empty salt, SHA-512, with empty info with missing deriveBits usage", - "empty derivedKey, empty salt, SHA-1, with normal info", - "empty derivedKey, empty salt, SHA-1, with normal info with 0 length", - "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: 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: 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-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: 192 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", "empty derivedKey, empty salt, SHA-1, with normal info with null length", - "empty derivedKey, empty salt, SHA-1, with normal info with non-multiple of 8 length", - "empty derivedKey, empty salt, SHA-1, with normal info with missing deriveBits usage", - "empty derivedKey, empty salt, SHA-1, with empty info", - "empty derivedKey, empty salt, SHA-1, with empty info with 0 length", - "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: 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: 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-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: 192 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", "empty derivedKey, empty salt, SHA-1, with empty info with null length", - "empty derivedKey, empty salt, SHA-1, with empty info with non-multiple of 8 length", - "empty derivedKey, empty salt, SHA-1, with empty info with missing deriveBits usage", - "empty derivedKey, empty salt, SHA-256, with normal info", - "empty derivedKey, empty salt, SHA-256, with normal info with 0 length", - "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: 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: 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-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: 192 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", "empty derivedKey, empty salt, SHA-256, with normal info with null length", - "empty derivedKey, empty salt, SHA-256, with normal info with non-multiple of 8 length", - "empty derivedKey, empty salt, SHA-256, with normal info with missing deriveBits usage", - "empty derivedKey, empty salt, SHA-256, with empty info", - "empty derivedKey, empty salt, SHA-256, with empty info with 0 length", - "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: 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: 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-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: 192 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "empty derivedKey, empty salt, SHA-256, with empty info with null length", - "empty derivedKey, empty salt, SHA-256, with empty info with non-multiple of 8 length", - "empty derivedKey, empty salt, SHA-256, with empty info with missing deriveBits usage" + "empty derivedKey, empty salt, SHA-256, with empty info with null length" ] } }, @@ -1112,117 +536,9 @@ "Derived key of type name: HMAC hash: SHA-256 length: 256 using long password, empty salt, SHA-256, with 0 iterations", "Derived key of type name: HMAC hash: SHA-384 length: 256 using long password, empty salt, SHA-256, with 0 iterations", "Derived key of type name: HMAC hash: SHA-512 length: 256 using long password, empty salt, SHA-256, with 0 iterations", - "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", - "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: 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: 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-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: 192 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", "empty password, short salt, SHA-384, with 1 iterations with null length", - "empty password, short salt, SHA-384, with 1 iterations with 0 length", - "empty password, short salt, SHA-384, with 1 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-384, with 1 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", "empty password, short salt, SHA-384, with 1000 iterations with null length", - "empty password, short salt, SHA-384, with 1000 iterations with 0 length", - "empty password, short salt, SHA-384, with 1000 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-384, with 1000 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CTR 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", - "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-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: 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-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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", "empty password, short salt, SHA-384, with 100000 iterations with null length", - "empty password, short salt, SHA-384, with 100000 iterations with 0 length", - "empty password, short salt, SHA-384, with 100000 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-384, with 100000 iterations with missing deriveBits usage", "empty password, short salt, SHA-384, with 0 iterations", "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", @@ -1240,117 +556,9 @@ "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-384, with 0 iterations", "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-384, with 0 iterations", "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-384, with 0 iterations", - "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", - "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: 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: 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-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: 192 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", "empty password, short salt, SHA-512, with 1 iterations with null length", - "empty password, short salt, SHA-512, with 1 iterations with 0 length", - "empty password, short salt, SHA-512, with 1 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-512, with 1 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", "empty password, short salt, SHA-512, with 1000 iterations with null length", - "empty password, short salt, SHA-512, with 1000 iterations with 0 length", - "empty password, short salt, SHA-512, with 1000 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-512, with 1000 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", "empty password, short salt, SHA-512, with 100000 iterations with null length", - "empty password, short salt, SHA-512, with 100000 iterations with 0 length", - "empty password, short salt, SHA-512, with 100000 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-512, with 100000 iterations with missing deriveBits usage", "empty password, short salt, SHA-512, with 0 iterations", "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", @@ -1368,117 +576,9 @@ "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-512, with 0 iterations", "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-512, with 0 iterations", "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-512, with 0 iterations", - "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", - "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: 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: 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-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: 192 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", "empty password, short salt, SHA-1, with 1 iterations with null length", - "empty password, short salt, SHA-1, with 1 iterations with 0 length", - "empty password, short salt, SHA-1, with 1 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-1, with 1 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", "empty password, short salt, SHA-1, with 1000 iterations with null length", - "empty password, short salt, SHA-1, with 1000 iterations with 0 length", - "empty password, short salt, SHA-1, with 1000 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-1, with 1000 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", "empty password, short salt, SHA-1, with 100000 iterations with null length", - "empty password, short salt, SHA-1, with 100000 iterations with 0 length", - "empty password, short salt, SHA-1, with 100000 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-1, with 100000 iterations with missing deriveBits usage", "empty password, short salt, SHA-1, with 0 iterations", "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", @@ -1496,117 +596,9 @@ "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-1, with 0 iterations", "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-1, with 0 iterations", "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-1, with 0 iterations", - "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", - "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: 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: 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-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: 192 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", "empty password, short salt, SHA-256, with 1 iterations with null length", - "empty password, short salt, SHA-256, with 1 iterations with 0 length", - "empty password, short salt, SHA-256, with 1 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-256, with 1 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", "empty password, short salt, SHA-256, with 1000 iterations with null length", - "empty password, short salt, SHA-256, with 1000 iterations with 0 length", - "empty password, short salt, SHA-256, with 1000 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-256, with 1000 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", "empty password, short salt, SHA-256, with 100000 iterations with null length", - "empty password, short salt, SHA-256, with 100000 iterations with 0 length", - "empty password, short salt, SHA-256, with 100000 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-256, with 100000 iterations with missing deriveBits usage", "empty password, short salt, SHA-256, with 0 iterations", "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", @@ -1624,117 +616,9 @@ "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-256, with 0 iterations", "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-256, with 0 iterations", "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-256, with 0 iterations", - "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", - "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: 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: 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-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: 192 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", "empty password, long salt, SHA-384, with 1 iterations with null length", - "empty password, long salt, SHA-384, with 1 iterations with 0 length", - "empty password, long salt, SHA-384, with 1 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-384, with 1 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", "empty password, long salt, SHA-384, with 1000 iterations with null length", - "empty password, long salt, SHA-384, with 1000 iterations with 0 length", - "empty password, long salt, SHA-384, with 1000 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-384, with 1000 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", "empty password, long salt, SHA-384, with 100000 iterations with null length", - "empty password, long salt, SHA-384, with 100000 iterations with 0 length", - "empty password, long salt, SHA-384, with 100000 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-384, with 100000 iterations with missing deriveBits usage", "empty password, long salt, SHA-384, with 0 iterations", "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", @@ -1752,117 +636,9 @@ "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-384, with 0 iterations", "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-384, with 0 iterations", "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-384, with 0 iterations", - "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", - "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: 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: 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-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: 192 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", "empty password, long salt, SHA-512, with 1 iterations with null length", - "empty password, long salt, SHA-512, with 1 iterations with 0 length", - "empty password, long salt, SHA-512, with 1 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-512, with 1 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", "empty password, long salt, SHA-512, with 1000 iterations with null length", - "empty password, long salt, SHA-512, with 1000 iterations with 0 length", - "empty password, long salt, SHA-512, with 1000 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-512, with 1000 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", "empty password, long salt, SHA-512, with 100000 iterations with null length", - "empty password, long salt, SHA-512, with 100000 iterations with 0 length", - "empty password, long salt, SHA-512, with 100000 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-512, with 100000 iterations with missing deriveBits usage", "empty password, long salt, SHA-512, with 0 iterations", "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", @@ -1880,117 +656,9 @@ "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-512, with 0 iterations", "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-512, with 0 iterations", "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-512, with 0 iterations", - "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", - "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: 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: 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-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: 192 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", "empty password, long salt, SHA-1, with 1 iterations with null length", - "empty password, long salt, SHA-1, with 1 iterations with 0 length", - "empty password, long salt, SHA-1, with 1 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-1, with 1 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", "empty password, long salt, SHA-1, with 1000 iterations with null length", - "empty password, long salt, SHA-1, with 1000 iterations with 0 length", - "empty password, long salt, SHA-1, with 1000 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-1, with 1000 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", "empty password, long salt, SHA-1, with 100000 iterations with null length", - "empty password, long salt, SHA-1, with 100000 iterations with 0 length", - "empty password, long salt, SHA-1, with 100000 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-1, with 100000 iterations with missing deriveBits usage", "empty password, long salt, SHA-1, with 0 iterations", "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", @@ -2008,117 +676,9 @@ "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-1, with 0 iterations", "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-1, with 0 iterations", "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-1, with 0 iterations", - "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", - "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: 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: 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-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: 192 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", "empty password, long salt, SHA-256, with 1 iterations with null length", - "empty password, long salt, SHA-256, with 1 iterations with 0 length", - "empty password, long salt, SHA-256, with 1 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-256, with 1 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", "empty password, long salt, SHA-256, with 1000 iterations with null length", - "empty password, long salt, SHA-256, with 1000 iterations with 0 length", - "empty password, long salt, SHA-256, with 1000 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-256, with 1000 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", "empty password, long salt, SHA-256, with 100000 iterations with null length", - "empty password, long salt, SHA-256, with 100000 iterations with 0 length", - "empty password, long salt, SHA-256, with 100000 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-256, with 100000 iterations with missing deriveBits usage", "empty password, long salt, SHA-256, with 0 iterations", "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", @@ -2136,117 +696,9 @@ "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-256, with 0 iterations", "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-256, with 0 iterations", "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-256, with 0 iterations", - "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", - "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: 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: 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-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: 192 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", "empty password, empty salt, SHA-384, with 1 iterations with null length", - "empty password, empty salt, SHA-384, with 1 iterations with 0 length", - "empty password, empty salt, SHA-384, with 1 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-384, with 1 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", "empty password, empty salt, SHA-384, with 1000 iterations with null length", - "empty password, empty salt, SHA-384, with 1000 iterations with 0 length", - "empty password, empty salt, SHA-384, with 1000 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-384, with 1000 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", "empty password, empty salt, SHA-384, with 100000 iterations with null length", - "empty password, empty salt, SHA-384, with 100000 iterations with 0 length", - "empty password, empty salt, SHA-384, with 100000 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-384, with 100000 iterations with missing deriveBits usage", "empty password, empty salt, SHA-384, with 0 iterations", "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", @@ -2264,117 +716,9 @@ "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-384, with 0 iterations", "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-384, with 0 iterations", "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-384, with 0 iterations", - "empty password, empty salt, SHA-512, with 1 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-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: 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: 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-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: 192 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", "empty password, empty salt, SHA-512, with 1 iterations with null length", - "empty password, empty salt, SHA-512, with 1 iterations with 0 length", - "empty password, empty salt, SHA-512, with 1 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-512, with 1 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", "empty password, empty salt, SHA-512, with 1000 iterations with null length", - "empty password, empty salt, SHA-512, with 1000 iterations with 0 length", - "empty password, empty salt, SHA-512, with 1000 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-512, with 1000 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", "empty password, empty salt, SHA-512, with 100000 iterations with null length", - "empty password, empty salt, SHA-512, with 100000 iterations with 0 length", - "empty password, empty salt, SHA-512, with 100000 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-512, with 100000 iterations with missing deriveBits usage", "empty password, empty salt, SHA-512, with 0 iterations", "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", @@ -2392,117 +736,9 @@ "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-512, with 0 iterations", "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-512, with 0 iterations", "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-512, with 0 iterations", - "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", - "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: 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: 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-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: 192 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", "empty password, empty salt, SHA-1, with 1 iterations with null length", - "empty password, empty salt, SHA-1, with 1 iterations with 0 length", - "empty password, empty salt, SHA-1, with 1 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-1, with 1 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", "empty password, empty salt, SHA-1, with 1000 iterations with null length", - "empty password, empty salt, SHA-1, with 1000 iterations with 0 length", - "empty password, empty salt, SHA-1, with 1000 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-1, with 1000 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", "empty password, empty salt, SHA-1, with 100000 iterations with null length", - "empty password, empty salt, SHA-1, with 100000 iterations with 0 length", - "empty password, empty salt, SHA-1, with 100000 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-1, with 100000 iterations with missing deriveBits usage", "empty password, empty salt, SHA-1, with 0 iterations", "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", @@ -2520,117 +756,9 @@ "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-1, with 0 iterations", "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-1, with 0 iterations", "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-1, with 0 iterations", - "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", - "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: 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: 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-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: 192 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", "empty password, empty salt, SHA-256, with 1 iterations with null length", - "empty password, empty salt, SHA-256, with 1 iterations with 0 length", - "empty password, empty salt, SHA-256, with 1 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-256, with 1 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", "empty password, empty salt, SHA-256, with 1000 iterations with null length", - "empty password, empty salt, SHA-256, with 1000 iterations with 0 length", - "empty password, empty salt, SHA-256, with 1000 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-256, with 1000 iterations with missing deriveBits usage", - "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", - "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: 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: 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-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: 192 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CTR length: 192 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", - "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-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: 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: 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-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: 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: 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: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", "empty password, empty salt, SHA-256, with 100000 iterations with null length", - "empty password, empty salt, SHA-256, with 100000 iterations with 0 length", - "empty password, empty salt, SHA-256, with 100000 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-256, with 100000 iterations with missing deriveBits usage", "empty password, empty salt, SHA-256, with 0 iterations", "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",