From cdd0006e3d5ac4a8bc7731c2747a0d1a47f28078 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20W=C3=BClker?= Date: Sun, 10 Nov 2024 01:59:39 +0100 Subject: [PATCH] Implement HKDF support for `subtlecrypto.deriveBits` (#34200) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Implement subtlecrypto.deriveBits with HKDF Signed-off-by: Simon Wülker * Update WPT expectations Signed-off-by: Simon Wülker --------- Signed-off-by: Simon Wülker --- components/script/dom/cryptokey.rs | 2 + components/script/dom/subtlecrypto.rs | 150 +- .../script/dom/webidls/SubtleCrypto.webidl | 7 + ...rithm-discards-context.https.window.js.ini | 9 - .../derived_bits_length.https.any.js.ini | 36 - .../derive_bits_keys/hkdf.https.any.js.ini | 8928 ----------------- .../symmetric_importKey.https.any.js.ini | 72 - 7 files changed, 156 insertions(+), 9048 deletions(-) diff --git a/components/script/dom/cryptokey.rs b/components/script/dom/cryptokey.rs index 18ef073b9ac..6e0ade288bf 100644 --- a/components/script/dom/cryptokey.rs +++ b/components/script/dom/cryptokey.rs @@ -27,6 +27,7 @@ pub enum Handle { Aes192(Vec), Aes256(Vec), Pbkdf2(Vec), + Hkdf(Vec), } /// @@ -148,6 +149,7 @@ impl Handle { Self::Aes192(bytes) => bytes, Self::Aes256(bytes) => bytes, Self::Pbkdf2(bytes) => bytes, + Self::Hkdf(bytes) => bytes, } } } diff --git a/components/script/dom/subtlecrypto.rs b/components/script/dom/subtlecrypto.rs index ef38190569c..edf52a5f966 100644 --- a/components/script/dom/subtlecrypto.rs +++ b/components/script/dom/subtlecrypto.rs @@ -17,7 +17,7 @@ use js::jsapi::{JSObject, JS_NewObject}; use js::jsval::ObjectValue; use js::rust::MutableHandleObject; use js::typedarray::ArrayBufferU8; -use ring::{digest, pbkdf2}; +use ring::{digest, hkdf, pbkdf2}; use servo_rand::{RngCore, ServoRng}; use crate::dom::bindings::buffer_source::create_buffer_source; @@ -27,7 +27,8 @@ use crate::dom::bindings::codegen::Bindings::CryptoKeyBinding::{ }; use crate::dom::bindings::codegen::Bindings::SubtleCryptoBinding::{ AesCbcParams, AesCtrParams, AesDerivedKeyParams, AesKeyAlgorithm, AesKeyGenParams, Algorithm, - AlgorithmIdentifier, JsonWebKey, KeyAlgorithm, KeyFormat, Pbkdf2Params, SubtleCryptoMethods, + AlgorithmIdentifier, HkdfParams, JsonWebKey, KeyAlgorithm, KeyFormat, Pbkdf2Params, + SubtleCryptoMethods, }; use crate::dom::bindings::codegen::UnionTypes::{ ArrayBufferViewOrArrayBuffer, ArrayBufferViewOrArrayBufferOrJsonWebKey, @@ -761,6 +762,37 @@ impl From for SubtleAesKeyGenParams { } } +/// +#[derive(Clone, Debug)] +pub struct SubtleHkdfParams { + /// + hash: DigestAlgorithm, + + /// + salt: Vec, + + /// + info: Vec, +} + +impl SubtleHkdfParams { + fn new(cx: JSContext, params: RootedTraceableBox) -> Fallible { + let hash = normalize_algorithm_for_digest(cx, ¶ms.hash)?; + let salt = match ¶ms.salt { + ArrayBufferViewOrArrayBuffer::ArrayBufferView(view) => view.to_vec(), + ArrayBufferViewOrArrayBuffer::ArrayBuffer(buffer) => buffer.to_vec(), + }; + let info = match ¶ms.info { + ArrayBufferViewOrArrayBuffer::ArrayBufferView(view) => view.to_vec(), + ArrayBufferViewOrArrayBuffer::ArrayBuffer(buffer) => buffer.to_vec(), + }; + + let params = Self { hash, salt, info }; + + Ok(params) + } +} + /// #[derive(Clone, Debug)] pub struct SubtlePbkdf2Params { @@ -817,6 +849,7 @@ enum ImportKeyAlgorithm { AesCbc, AesCtr, Pbkdf2, + Hkdf, } /// A normalized algorithm returned by [`normalize_algorithm`] with operation `"deriveBits"` @@ -824,6 +857,7 @@ enum ImportKeyAlgorithm { /// [`normalize_algorithm`]: https://w3c.github.io/webcrypto/#algorithm-normalization-normalize-an-algorithm enum DeriveBitsAlgorithm { Pbkdf2(SubtlePbkdf2Params), + Hkdf(SubtleHkdfParams), } /// A normalized algorithm returned by [`normalize_algorithm`] with operation `"encrypt"` or `"decrypt"` @@ -843,7 +877,7 @@ enum KeyGenerationAlgorithm { macro_rules! value_from_js_object { ($t: ty, $cx: ident, $value: ident) => {{ - let params_result = <$t>::new($cx, $value.handle()).map_err(|_| Error::Operation)?; + let params_result = <$t>::new($cx, $value.handle()).map_err(|_| Error::JSFailed)?; let ConversionResult::Success(params) = params_result else { return Err(Error::Syntax); }; @@ -934,6 +968,7 @@ fn normalize_algorithm_for_import_key( ALG_AES_CBC => ImportKeyAlgorithm::AesCbc, ALG_AES_CTR => ImportKeyAlgorithm::AesCtr, ALG_PBKDF2 => ImportKeyAlgorithm::Pbkdf2, + ALG_HKDF => ImportKeyAlgorithm::Hkdf, _ => return Err(Error::NotSupported), }; @@ -959,6 +994,10 @@ fn normalize_algorithm_for_derive_bits( let params = value_from_js_object!(Pbkdf2Params, cx, value); let subtle_params = SubtlePbkdf2Params::new(cx, params)?; DeriveBitsAlgorithm::Pbkdf2(subtle_params) + } else if algorithm.name.str().eq_ignore_ascii_case(ALG_HKDF) { + let params = value_from_js_object!(HkdfParams, cx, value); + let subtle_params = SubtleHkdfParams::new(cx, params)?; + DeriveBitsAlgorithm::Hkdf(subtle_params) } else { return Err(Error::NotSupported); }; @@ -1305,6 +1344,60 @@ impl SubtleCrypto { } } + /// + #[allow(unsafe_code)] + fn import_key_hkdf( + &self, + format: KeyFormat, + data: &[u8], + extractable: bool, + usages: Vec, + ) -> Result, Error> { + // Step 1. Let keyData be the key data to be imported. + // Step 2. If format is "raw": + if format == KeyFormat::Raw { + // Step 1. If usages contains a value that is not "deriveKey" or "deriveBits", then throw a SyntaxError. + if usages + .iter() + .any(|usage| !matches!(usage, KeyUsage::DeriveKey | KeyUsage::DeriveBits)) + { + return Err(Error::Syntax); + } + + // Step 2. If extractable is not false, then throw a SyntaxError. + if extractable { + return Err(Error::Syntax); + } + + // Step 3. Let key be a new CryptoKey representing the key data provided in keyData. + // Step 4. Set the [[type]] internal slot of key to "secret". + // Step 5. Let algorithm be a new KeyAlgorithm object. + // Step 6. Set the name attribute of algorithm to "HKDF". + // Step 7. Set the [[algorithm]] internal slot of key to algorithm. + let name = DOMString::from(ALG_HKDF); + let cx = GlobalScope::get_cx(); + rooted!(in(*cx) let mut algorithm_object = unsafe {JS_NewObject(*cx, ptr::null()) }); + assert!(!algorithm_object.is_null()); + KeyAlgorithm::from_name(name.clone(), algorithm_object.handle_mut(), cx); + + let key = CryptoKey::new( + &self.global(), + KeyType::Secret, + extractable, + name, + algorithm_object.handle(), + usages, + Handle::Hkdf(data.to_vec()), + ); + + // Step 8. Return key. + Ok(key) + } else { + // throw a NotSupportedError. + Err(Error::NotSupported) + } + } + /// #[allow(unsafe_code)] fn import_key_pbkdf2( @@ -1403,6 +1496,55 @@ impl AesKeyAlgorithm { } } +impl SubtleHkdfParams { + /// + fn derive_bits(&self, key: &CryptoKey, length: Option) -> Result, Error> { + // Step 1. If length is null or zero, or is not a multiple of 8, then throw an OperationError. + let Some(length) = length else { + return Err(Error::Operation); + }; + if length == 0 || length % 8 != 0 { + return Err(Error::Operation); + }; + + // Step 3. Let keyDerivationKey be the secret represented by [[handle]] internal slot of key. + let key_derivation_key = key.handle().as_bytes(); + + // Step 4. Let result be the result of performing the HKDF extract and then the HKDF expand step described + // in Section 2 of [RFC5869] using: + // * the hash member of normalizedAlgorithm as Hash, + // * keyDerivationKey as the input keying material, IKM, + // * the contents of the salt member of normalizedAlgorithm as salt, + // * the contents of the info member of normalizedAlgorithm as info, + // * length divided by 8 as the value of L, + let mut result = vec![0; length as usize / 8]; + let algorithm = match self.hash { + DigestAlgorithm::Sha1 => hkdf::HKDF_SHA1_FOR_LEGACY_USE_ONLY, + DigestAlgorithm::Sha256 => hkdf::HKDF_SHA256, + DigestAlgorithm::Sha384 => hkdf::HKDF_SHA384, + DigestAlgorithm::Sha512 => hkdf::HKDF_SHA512, + }; + let salt = hkdf::Salt::new(algorithm, &self.salt); + let info = self.info.as_slice(); + let pseudo_random_key = salt.extract(key_derivation_key); + + let Ok(output_key_material) = + pseudo_random_key.expand(std::slice::from_ref(&info), algorithm) + else { + // Step 5. If the key derivation operation fails, then throw an OperationError. + return Err(Error::Operation); + }; + + if output_key_material.fill(&mut result).is_err() { + return Err(Error::Operation); + }; + + // Step 6. Return the result of creating an ArrayBuffer containing result. + // NOTE: The ArrayBuffer is created by the caller + Ok(result) + } +} + impl SubtlePbkdf2Params { /// fn derive_bits(&self, key: &CryptoKey, length: Option) -> Result, Error> { @@ -1500,6 +1642,7 @@ impl ImportKeyAlgorithm { subtle.import_key_aes(format, secret, extractable, key_usages, ALG_AES_CTR) }, Self::Pbkdf2 => subtle.import_key_pbkdf2(format, secret, extractable, key_usages), + Self::Hkdf => subtle.import_key_hkdf(format, secret, extractable, key_usages), } } } @@ -1508,6 +1651,7 @@ impl DeriveBitsAlgorithm { fn derive_bits(&self, key: &CryptoKey, length: Option) -> Result, Error> { match self { Self::Pbkdf2(pbkdf2_params) => pbkdf2_params.derive_bits(key, length), + Self::Hkdf(hkdf_params) => hkdf_params.derive_bits(key, length), } } } diff --git a/components/script/dom/webidls/SubtleCrypto.webidl b/components/script/dom/webidls/SubtleCrypto.webidl index 8400a8b91c3..118b54c1428 100644 --- a/components/script/dom/webidls/SubtleCrypto.webidl +++ b/components/script/dom/webidls/SubtleCrypto.webidl @@ -92,6 +92,13 @@ dictionary AesCtrParams : Algorithm { required [EnforceRange] octet length; }; +// https://w3c.github.io/webcrypto/#hkdf-params +dictionary HkdfParams : Algorithm { + required HashAlgorithmIdentifier hash; + required BufferSource salt; + required BufferSource info; +}; + // https://w3c.github.io/webcrypto/#pbkdf2-params dictionary Pbkdf2Params : Algorithm { required BufferSource salt; diff --git a/tests/wpt/meta/WebCryptoAPI/algorithm-discards-context.https.window.js.ini b/tests/wpt/meta/WebCryptoAPI/algorithm-discards-context.https.window.js.ini index d144503a7d2..4efc26a718d 100644 --- a/tests/wpt/meta/WebCryptoAPI/algorithm-discards-context.https.window.js.ini +++ b/tests/wpt/meta/WebCryptoAPI/algorithm-discards-context.https.window.js.ini @@ -12,15 +12,6 @@ [Context is discarded in verify] expected: TIMEOUT - [Context is discarded in deriveBits] - expected: TIMEOUT - - [Context is discarded in deriveKey] - expected: TIMEOUT - - [Context is discarded in deriveKey (2)] - expected: TIMEOUT - [Context is discarded in wrapKey] expected: TIMEOUT diff --git a/tests/wpt/meta/WebCryptoAPI/derive_bits_keys/derived_bits_length.https.any.js.ini b/tests/wpt/meta/WebCryptoAPI/derive_bits_keys/derived_bits_length.https.any.js.ini index ed763298dc4..79589c9a5aa 100644 --- a/tests/wpt/meta/WebCryptoAPI/derive_bits_keys/derived_bits_length.https.any.js.ini +++ b/tests/wpt/meta/WebCryptoAPI/derive_bits_keys/derived_bits_length.https.any.js.ini @@ -1,19 +1,4 @@ [derived_bits_length.https.any.html] - [HKDF derivation with 256 as 'length' parameter] - expected: FAIL - - [HKDF derivation with 0 as 'length' parameter] - expected: FAIL - - [HKDF derivation with null as 'length' parameter] - expected: FAIL - - [HKDF derivation with undefined as 'length' parameter] - expected: FAIL - - [HKDF derivation with omitted as 'length' parameter] - expected: FAIL - [ECDH derivation with 256 as 'length' parameter] expected: FAIL @@ -47,9 +32,6 @@ [HKDF derivation with 384 as 'length' parameter] expected: FAIL - [HKDF derivation with 230 as 'length' parameter] - expected: FAIL - [ECDH derivation with 384 as 'length' parameter] expected: FAIL @@ -64,21 +46,6 @@ [derived_bits_length.https.any.worker.html] - [HKDF derivation with 256 as 'length' parameter] - expected: FAIL - - [HKDF derivation with 0 as 'length' parameter] - expected: FAIL - - [HKDF derivation with null as 'length' parameter] - expected: FAIL - - [HKDF derivation with undefined as 'length' parameter] - expected: FAIL - - [HKDF derivation with omitted as 'length' parameter] - expected: FAIL - [ECDH derivation with 256 as 'length' parameter] expected: FAIL @@ -112,9 +79,6 @@ [HKDF derivation with 384 as 'length' parameter] expected: FAIL - [HKDF derivation with 230 as 'length' parameter] - expected: FAIL - [ECDH derivation with 384 as 'length' parameter] expected: FAIL diff --git a/tests/wpt/meta/WebCryptoAPI/derive_bits_keys/hkdf.https.any.js.ini b/tests/wpt/meta/WebCryptoAPI/derive_bits_keys/hkdf.https.any.js.ini index 56cc5fd0810..02bc06134b2 100644 --- a/tests/wpt/meta/WebCryptoAPI/derive_bits_keys/hkdf.https.any.js.ini +++ b/tests/wpt/meta/WebCryptoAPI/derive_bits_keys/hkdf.https.any.js.ini @@ -8,9 +8,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL @@ -20,213 +17,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, normal salt, SHA-256, with empty info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [empty derivedKey, normal salt, SHA-256, with empty info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, normal salt, PBKDF2, with normal info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [empty derivedKey, normal salt, PBKDF2, with empty info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - [empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [empty derivedKey, empty salt, SHA-384, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -236,9 +77,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -248,9 +86,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -260,9 +95,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -272,9 +104,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -284,9 +113,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -296,9 +122,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -308,9 +131,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -320,9 +140,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -332,111 +149,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, empty salt, SHA-384, with normal info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [empty derivedKey, empty salt, SHA-384, with normal info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [empty derivedKey, empty salt, SHA-384, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -446,9 +209,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -458,9 +218,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -470,9 +227,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -482,9 +236,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -494,9 +245,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -506,9 +254,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -518,9 +263,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -530,9 +272,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -542,111 +281,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, empty salt, SHA-384, with empty info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [empty derivedKey, empty salt, SHA-384, with empty info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [empty derivedKey, empty salt, SHA-512, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -656,9 +341,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -668,9 +350,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -680,9 +359,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -692,9 +368,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -704,9 +377,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -716,9 +386,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -728,9 +395,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -740,9 +404,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -752,111 +413,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, empty salt, SHA-512, with normal info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [empty derivedKey, empty salt, SHA-512, with normal info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [empty derivedKey, empty salt, SHA-512, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -866,9 +473,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -878,9 +482,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -890,9 +491,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -902,9 +500,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -914,9 +509,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -926,9 +518,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -938,9 +527,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -950,9 +536,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -962,111 +545,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, empty salt, SHA-512, with empty info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [empty derivedKey, empty salt, SHA-512, with empty info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [empty derivedKey, empty salt, SHA-1, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -1076,9 +605,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -1088,9 +614,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -1100,9 +623,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -1112,9 +632,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -1124,9 +641,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -1136,9 +650,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -1148,9 +659,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -1160,9 +668,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -1172,111 +677,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, empty salt, SHA-1, with normal info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [empty derivedKey, empty salt, SHA-1, with normal info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [empty derivedKey, empty salt, SHA-1, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -1286,9 +737,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -1298,9 +746,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -1310,9 +755,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -1322,9 +764,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -1334,9 +773,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -1346,9 +782,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -1358,9 +791,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -1370,9 +800,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -1382,111 +809,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, empty salt, SHA-1, with empty info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [empty derivedKey, empty salt, SHA-1, with empty info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, empty salt, SHA-256, with normal info] - expected: FAIL - - [empty derivedKey, empty salt, SHA-256, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -1496,9 +860,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -1508,9 +869,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -1520,9 +878,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -1532,9 +887,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -1544,9 +896,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -1556,9 +905,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL @@ -1568,9 +914,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL @@ -1580,9 +923,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL @@ -1592,111 +932,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, empty salt, SHA-256, with normal info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [empty derivedKey, empty salt, SHA-256, with normal info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, empty salt, SHA-256, with empty info] - expected: FAIL - - [empty derivedKey, empty salt, SHA-256, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -1706,9 +983,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -1718,9 +992,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -1730,9 +1001,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -1742,9 +1010,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -1754,9 +1019,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -1766,9 +1028,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL @@ -1778,9 +1037,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL @@ -1790,9 +1046,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL @@ -1802,215 +1055,59 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, empty salt, SHA-256, with empty info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [empty derivedKey, empty salt, SHA-256, with empty info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, empty salt, PBKDF2, with normal info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [empty derivedKey, empty salt, PBKDF2, with empty info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - [hkdf.https.any.worker.html?1-1000] [short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [short derivedKey, normal salt, SHA-384, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -2020,9 +1117,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -2032,9 +1126,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -2044,9 +1135,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -2056,9 +1144,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -2068,9 +1153,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -2080,9 +1162,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -2092,9 +1171,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -2104,9 +1180,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -2116,111 +1189,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL - [short derivedKey, normal salt, SHA-384, with normal info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [short derivedKey, normal salt, SHA-384, with normal info with missing deriveBits usage] - expected: FAIL - [short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [short derivedKey, normal salt, SHA-384, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -2230,9 +1249,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -2242,9 +1258,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -2254,9 +1267,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -2266,9 +1276,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -2278,9 +1285,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -2290,9 +1294,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -2302,9 +1303,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -2314,9 +1312,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -2326,111 +1321,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, normal salt, SHA-384, with empty info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [short derivedKey, normal salt, SHA-384, with empty info with missing deriveBits usage] - expected: FAIL - [short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [short derivedKey, normal salt, SHA-512, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -2440,9 +1381,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -2452,9 +1390,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -2464,9 +1399,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -2476,9 +1408,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -2488,9 +1417,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -2500,9 +1426,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -2512,9 +1435,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -2524,9 +1444,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -2536,111 +1453,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL - [short derivedKey, normal salt, SHA-512, with normal info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [short derivedKey, normal salt, SHA-512, with normal info with missing deriveBits usage] - expected: FAIL - [short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [short derivedKey, normal salt, SHA-512, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -2650,9 +1513,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -2662,9 +1522,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -2674,9 +1531,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -2686,9 +1540,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -2698,9 +1549,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -2710,9 +1558,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -2722,9 +1567,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -2734,9 +1576,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -2746,111 +1585,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, normal salt, SHA-512, with empty info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [short derivedKey, normal salt, SHA-512, with empty info with missing deriveBits usage] - expected: FAIL - [short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [short derivedKey, normal salt, SHA-1, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -2860,9 +1645,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -2872,9 +1654,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -2884,9 +1663,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -2896,9 +1672,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -2908,9 +1681,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -2920,9 +1690,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -2932,9 +1699,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -2944,9 +1708,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -2956,111 +1717,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL - [short derivedKey, normal salt, SHA-1, with normal info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [short derivedKey, normal salt, SHA-1, with normal info with missing deriveBits usage] - expected: FAIL - [short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [short derivedKey, normal salt, SHA-1, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -3070,9 +1777,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -3082,9 +1786,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -3094,9 +1795,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -3106,9 +1804,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -3118,9 +1813,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -3130,9 +1822,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -3142,9 +1831,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -3154,9 +1840,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -3166,111 +1849,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, normal salt, SHA-1, with empty info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [short derivedKey, normal salt, SHA-1, with empty info with missing deriveBits usage] - expected: FAIL - [short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, normal salt, SHA-256, with normal info] - expected: FAIL - - [short derivedKey, normal salt, SHA-256, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -3280,9 +1900,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -3292,9 +1909,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -3304,9 +1918,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -3316,9 +1927,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -3328,9 +1936,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -3340,9 +1945,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -3352,9 +1954,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -3364,9 +1963,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -3376,111 +1972,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [short derivedKey, normal salt, SHA-256, with normal info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [short derivedKey, normal salt, SHA-256, with normal info with missing deriveBits usage] - expected: FAIL - [short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [short derivedKey, normal salt, SHA-256, with empty info] - expected: FAIL - - [short derivedKey, normal salt, SHA-256, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -3490,9 +2023,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -3502,9 +2032,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -3514,9 +2041,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -3526,9 +2050,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -3538,9 +2059,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -3550,9 +2068,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -3562,9 +2077,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -3574,9 +2086,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -3586,213 +2095,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, normal salt, SHA-256, with empty info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [short derivedKey, normal salt, SHA-256, with empty info with missing deriveBits usage] - expected: FAIL - [short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, normal salt, PBKDF2, with normal info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [short derivedKey, normal salt, PBKDF2, with empty info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - [short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [short derivedKey, empty salt, SHA-384, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -3802,9 +2155,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -3814,9 +2164,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -3826,9 +2173,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -3838,9 +2182,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -3850,9 +2191,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -3862,9 +2200,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -3874,9 +2209,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -3886,9 +2218,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -3898,111 +2227,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL - [short derivedKey, empty salt, SHA-384, with normal info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [short derivedKey, empty salt, SHA-384, with normal info with missing deriveBits usage] - expected: FAIL - [short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [short derivedKey, empty salt, SHA-384, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -4012,9 +2287,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -4024,9 +2296,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -4036,9 +2305,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -4048,9 +2314,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -4060,9 +2323,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -4072,9 +2332,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -4084,9 +2341,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -4096,9 +2350,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -4108,111 +2359,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, empty salt, SHA-384, with empty info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [short derivedKey, empty salt, SHA-384, with empty info with missing deriveBits usage] - expected: FAIL - [short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [short derivedKey, empty salt, SHA-512, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -4222,9 +2419,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -4234,9 +2428,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -4246,9 +2437,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -4258,9 +2446,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -4270,9 +2455,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -4282,9 +2464,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -4294,9 +2473,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -4306,9 +2482,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -4318,111 +2491,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL - [short derivedKey, empty salt, SHA-512, with normal info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [short derivedKey, empty salt, SHA-512, with normal info with missing deriveBits usage] - expected: FAIL - [short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [short derivedKey, empty salt, SHA-512, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -4432,9 +2551,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -4444,9 +2560,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -4456,9 +2569,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -4468,9 +2578,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -4480,9 +2587,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -4492,9 +2596,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -4504,9 +2605,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -4516,9 +2614,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -4528,111 +2623,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, empty salt, SHA-512, with empty info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [short derivedKey, empty salt, SHA-512, with empty info with missing deriveBits usage] - expected: FAIL - [short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [short derivedKey, empty salt, SHA-1, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -4642,9 +2683,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -4654,9 +2692,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -4666,9 +2701,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -4678,9 +2710,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -4690,9 +2719,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -4702,9 +2728,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -4714,9 +2737,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -4726,9 +2746,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -4738,111 +2755,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL - [short derivedKey, empty salt, SHA-1, with normal info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [short derivedKey, empty salt, SHA-1, with normal info with missing deriveBits usage] - expected: FAIL - [short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [short derivedKey, empty salt, SHA-1, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -4860,9 +2823,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL @@ -4872,213 +2832,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, normal salt, SHA-256, with empty info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [empty derivedKey, normal salt, SHA-256, with empty info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, normal salt, PBKDF2, with normal info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [empty derivedKey, normal salt, PBKDF2, with empty info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - [empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [empty derivedKey, empty salt, SHA-384, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -5088,9 +2892,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -5100,9 +2901,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -5112,9 +2910,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -5124,9 +2919,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -5136,9 +2928,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -5148,9 +2937,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -5160,9 +2946,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -5172,9 +2955,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -5184,111 +2964,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, empty salt, SHA-384, with normal info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [empty derivedKey, empty salt, SHA-384, with normal info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [empty derivedKey, empty salt, SHA-384, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -5298,9 +3024,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -5310,9 +3033,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -5322,9 +3042,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -5334,9 +3051,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -5346,9 +3060,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -5358,9 +3069,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -5370,9 +3078,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -5382,9 +3087,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -5394,111 +3096,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, empty salt, SHA-384, with empty info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [empty derivedKey, empty salt, SHA-384, with empty info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [empty derivedKey, empty salt, SHA-512, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -5508,9 +3156,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -5520,9 +3165,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -5532,9 +3174,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -5544,9 +3183,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -5556,9 +3192,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -5568,9 +3201,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -5580,9 +3210,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -5592,9 +3219,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -5604,111 +3228,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, empty salt, SHA-512, with normal info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [empty derivedKey, empty salt, SHA-512, with normal info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [empty derivedKey, empty salt, SHA-512, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -5718,9 +3288,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -5730,9 +3297,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -5742,9 +3306,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -5754,9 +3315,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -5766,9 +3324,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -5778,9 +3333,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -5790,9 +3342,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -5802,9 +3351,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -5814,111 +3360,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, empty salt, SHA-512, with empty info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [empty derivedKey, empty salt, SHA-512, with empty info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [empty derivedKey, empty salt, SHA-1, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -5928,9 +3420,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -5940,9 +3429,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -5952,9 +3438,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -5964,9 +3447,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -5976,9 +3456,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -5988,9 +3465,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -6000,9 +3474,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -6012,9 +3483,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -6024,111 +3492,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, empty salt, SHA-1, with normal info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [empty derivedKey, empty salt, SHA-1, with normal info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [empty derivedKey, empty salt, SHA-1, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -6138,9 +3552,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -6150,9 +3561,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -6162,9 +3570,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -6174,9 +3579,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -6186,9 +3588,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -6198,9 +3597,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -6210,9 +3606,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -6222,9 +3615,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -6234,111 +3624,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, empty salt, SHA-1, with empty info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [empty derivedKey, empty salt, SHA-1, with empty info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, empty salt, SHA-256, with normal info] - expected: FAIL - - [empty derivedKey, empty salt, SHA-256, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -6348,9 +3675,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -6360,9 +3684,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -6372,9 +3693,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -6384,9 +3702,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -6396,9 +3711,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -6408,9 +3720,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL @@ -6420,9 +3729,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL @@ -6432,9 +3738,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL @@ -6444,111 +3747,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, empty salt, SHA-256, with normal info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [empty derivedKey, empty salt, SHA-256, with normal info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, empty salt, SHA-256, with empty info] - expected: FAIL - - [empty derivedKey, empty salt, SHA-256, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -6558,9 +3798,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -6570,9 +3807,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -6582,9 +3816,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -6594,9 +3825,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -6606,9 +3834,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -6618,9 +3843,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL @@ -6630,9 +3852,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL @@ -6642,9 +3861,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL @@ -6654,137 +3870,20 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, empty salt, SHA-256, with empty info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [empty derivedKey, empty salt, SHA-256, with empty info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, empty salt, PBKDF2, with normal info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [empty derivedKey, empty salt, PBKDF2, with empty info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - [hkdf.https.any.worker.html?1001-2000] [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -6794,9 +3893,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -6806,9 +3902,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -6818,9 +3911,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -6830,9 +3920,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -6842,9 +3929,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -6854,9 +3938,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -6866,9 +3947,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -6878,111 +3956,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, empty salt, SHA-1, with empty info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [short derivedKey, empty salt, SHA-1, with empty info with missing deriveBits usage] - expected: FAIL - [short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, empty salt, SHA-256, with normal info] - expected: FAIL - - [short derivedKey, empty salt, SHA-256, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -6992,9 +4007,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -7004,9 +4016,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -7016,9 +4025,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -7028,9 +4034,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -7040,9 +4043,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -7052,9 +4052,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -7064,9 +4061,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -7076,9 +4070,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -7088,111 +4079,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [short derivedKey, empty salt, SHA-256, with normal info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [short derivedKey, empty salt, SHA-256, with normal info with missing deriveBits usage] - expected: FAIL - [short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [short derivedKey, empty salt, SHA-256, with empty info] - expected: FAIL - - [short derivedKey, empty salt, SHA-256, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -7202,9 +4130,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -7214,9 +4139,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -7226,9 +4148,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -7238,9 +4157,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -7250,9 +4166,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -7262,9 +4175,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -7274,9 +4184,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -7286,9 +4193,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -7298,213 +4202,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, empty salt, SHA-256, with empty info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [short derivedKey, empty salt, SHA-256, with empty info with missing deriveBits usage] - expected: FAIL - [short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, empty salt, PBKDF2, with normal info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [short derivedKey, empty salt, PBKDF2, with empty info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - [long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [long derivedKey, normal salt, SHA-384, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -7514,9 +4262,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -7526,9 +4271,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -7538,9 +4280,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -7550,9 +4289,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -7562,9 +4298,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -7574,9 +4307,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -7586,9 +4316,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -7598,9 +4325,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -7610,111 +4334,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL - [long derivedKey, normal salt, SHA-384, with normal info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [long derivedKey, normal salt, SHA-384, with normal info with missing deriveBits usage] - expected: FAIL - [long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [long derivedKey, normal salt, SHA-384, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -7724,9 +4394,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -7736,9 +4403,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -7748,9 +4412,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -7760,9 +4421,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -7772,9 +4430,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -7784,9 +4439,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -7796,9 +4448,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -7808,9 +4457,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -7820,111 +4466,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, normal salt, SHA-384, with empty info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [long derivedKey, normal salt, SHA-384, with empty info with missing deriveBits usage] - expected: FAIL - [long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [long derivedKey, normal salt, SHA-512, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -7934,9 +4526,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -7946,9 +4535,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -7958,9 +4544,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -7970,9 +4553,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -7982,9 +4562,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -7994,9 +4571,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -8006,9 +4580,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -8018,9 +4589,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -8030,111 +4598,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL - [long derivedKey, normal salt, SHA-512, with normal info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [long derivedKey, normal salt, SHA-512, with normal info with missing deriveBits usage] - expected: FAIL - [long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [long derivedKey, normal salt, SHA-512, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -8144,9 +4658,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -8156,9 +4667,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -8168,9 +4676,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -8180,9 +4685,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -8192,9 +4694,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -8204,9 +4703,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -8216,9 +4712,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -8228,9 +4721,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -8240,111 +4730,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, normal salt, SHA-512, with empty info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [long derivedKey, normal salt, SHA-512, with empty info with missing deriveBits usage] - expected: FAIL - [long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [long derivedKey, normal salt, SHA-1, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -8354,9 +4790,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -8366,9 +4799,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -8378,9 +4808,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -8390,9 +4817,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -8402,9 +4826,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -8414,9 +4835,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -8426,9 +4844,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -8438,9 +4853,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -8450,111 +4862,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL - [long derivedKey, normal salt, SHA-1, with normal info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [long derivedKey, normal salt, SHA-1, with normal info with missing deriveBits usage] - expected: FAIL - [long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [long derivedKey, normal salt, SHA-1, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -8564,9 +4922,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -8576,9 +4931,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -8588,9 +4940,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -8600,9 +4949,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -8612,9 +4958,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -8624,9 +4967,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -8636,9 +4976,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -8648,9 +4985,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -8660,111 +4994,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, normal salt, SHA-1, with empty info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [long derivedKey, normal salt, SHA-1, with empty info with missing deriveBits usage] - expected: FAIL - [long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, normal salt, SHA-256, with normal info] - expected: FAIL - - [long derivedKey, normal salt, SHA-256, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -8774,9 +5045,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -8786,9 +5054,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -8798,9 +5063,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -8810,9 +5072,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -8822,9 +5081,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -8834,9 +5090,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -8846,9 +5099,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -8858,9 +5108,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -8870,111 +5117,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [long derivedKey, normal salt, SHA-256, with normal info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [long derivedKey, normal salt, SHA-256, with normal info with missing deriveBits usage] - expected: FAIL - [long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [long derivedKey, normal salt, SHA-256, with empty info] - expected: FAIL - - [long derivedKey, normal salt, SHA-256, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -8984,9 +5168,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -8996,9 +5177,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -9008,9 +5186,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -9020,9 +5195,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -9032,9 +5204,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -9044,9 +5213,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -9056,9 +5222,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -9068,9 +5231,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -9080,213 +5240,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, normal salt, SHA-256, with empty info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [long derivedKey, normal salt, SHA-256, with empty info with missing deriveBits usage] - expected: FAIL - [long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, normal salt, PBKDF2, with normal info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [long derivedKey, normal salt, PBKDF2, with empty info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - [long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [long derivedKey, empty salt, SHA-384, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -9296,9 +5300,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -9308,9 +5309,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -9320,9 +5318,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -9332,9 +5327,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -9344,9 +5336,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -9356,9 +5345,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -9368,9 +5354,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -9380,9 +5363,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -9392,111 +5372,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL - [long derivedKey, empty salt, SHA-384, with normal info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [long derivedKey, empty salt, SHA-384, with normal info with missing deriveBits usage] - expected: FAIL - [long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [long derivedKey, empty salt, SHA-384, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -9506,9 +5432,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -9518,9 +5441,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -9530,9 +5450,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -9542,9 +5459,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -9554,9 +5468,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -9566,9 +5477,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -9578,9 +5486,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -9590,9 +5495,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -9602,102 +5504,51 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, empty salt, SHA-384, with empty info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [long derivedKey, empty salt, SHA-384, with empty info with missing deriveBits usage] - expected: FAIL - [long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [long derivedKey, empty salt, SHA-512, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL @@ -9706,87 +5557,45 @@ [short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [short derivedKey, normal salt, SHA-384, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -9796,9 +5605,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -9808,9 +5614,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -9820,9 +5623,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -9832,9 +5632,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -9844,9 +5641,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -9856,9 +5650,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -9868,9 +5659,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -9880,9 +5668,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -9892,111 +5677,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL - [short derivedKey, normal salt, SHA-384, with normal info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [short derivedKey, normal salt, SHA-384, with normal info with missing deriveBits usage] - expected: FAIL - [short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [short derivedKey, normal salt, SHA-384, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -10006,9 +5737,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -10018,9 +5746,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -10030,9 +5755,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -10042,9 +5764,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -10054,9 +5773,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -10066,9 +5782,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -10078,9 +5791,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -10090,9 +5800,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -10102,111 +5809,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, normal salt, SHA-384, with empty info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [short derivedKey, normal salt, SHA-384, with empty info with missing deriveBits usage] - expected: FAIL - [short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [short derivedKey, normal salt, SHA-512, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -10216,9 +5869,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -10228,9 +5878,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -10240,9 +5887,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -10252,9 +5896,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -10264,9 +5905,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -10276,9 +5914,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -10288,9 +5923,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -10300,9 +5932,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -10312,111 +5941,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL - [short derivedKey, normal salt, SHA-512, with normal info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [short derivedKey, normal salt, SHA-512, with normal info with missing deriveBits usage] - expected: FAIL - [short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [short derivedKey, normal salt, SHA-512, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -10426,9 +6001,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -10438,9 +6010,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -10450,9 +6019,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -10462,9 +6028,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -10474,9 +6037,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -10486,9 +6046,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -10498,9 +6055,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -10510,9 +6064,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -10522,111 +6073,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, normal salt, SHA-512, with empty info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [short derivedKey, normal salt, SHA-512, with empty info with missing deriveBits usage] - expected: FAIL - [short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [short derivedKey, normal salt, SHA-1, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -10636,9 +6133,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -10648,9 +6142,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -10660,9 +6151,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -10672,9 +6160,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -10684,9 +6169,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -10696,9 +6178,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -10708,9 +6187,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -10720,9 +6196,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -10732,111 +6205,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL - [short derivedKey, normal salt, SHA-1, with normal info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [short derivedKey, normal salt, SHA-1, with normal info with missing deriveBits usage] - expected: FAIL - [short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [short derivedKey, normal salt, SHA-1, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -10846,9 +6265,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -10858,9 +6274,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -10870,9 +6283,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -10882,9 +6292,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -10894,9 +6301,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -10906,9 +6310,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -10918,9 +6319,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -10930,9 +6328,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -10942,111 +6337,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, normal salt, SHA-1, with empty info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [short derivedKey, normal salt, SHA-1, with empty info with missing deriveBits usage] - expected: FAIL - [short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, normal salt, SHA-256, with normal info] - expected: FAIL - - [short derivedKey, normal salt, SHA-256, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -11056,9 +6388,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -11068,9 +6397,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -11080,9 +6406,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -11092,9 +6415,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -11104,9 +6424,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -11116,9 +6433,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -11128,9 +6442,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -11140,9 +6451,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -11152,111 +6460,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [short derivedKey, normal salt, SHA-256, with normal info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [short derivedKey, normal salt, SHA-256, with normal info with missing deriveBits usage] - expected: FAIL - [short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [short derivedKey, normal salt, SHA-256, with empty info] - expected: FAIL - - [short derivedKey, normal salt, SHA-256, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -11266,9 +6511,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -11278,9 +6520,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -11290,9 +6529,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -11302,9 +6538,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -11314,9 +6547,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -11326,9 +6556,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -11338,9 +6565,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -11350,9 +6574,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -11362,213 +6583,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, normal salt, SHA-256, with empty info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [short derivedKey, normal salt, SHA-256, with empty info with missing deriveBits usage] - expected: FAIL - [short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, normal salt, PBKDF2, with normal info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [short derivedKey, normal salt, PBKDF2, with empty info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - [short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [short derivedKey, empty salt, SHA-384, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -11578,9 +6643,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -11590,9 +6652,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -11602,9 +6661,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -11614,9 +6670,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -11626,9 +6679,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -11638,9 +6688,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -11650,9 +6697,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -11662,9 +6706,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -11674,111 +6715,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL - [short derivedKey, empty salt, SHA-384, with normal info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [short derivedKey, empty salt, SHA-384, with normal info with missing deriveBits usage] - expected: FAIL - [short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [short derivedKey, empty salt, SHA-384, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -11788,9 +6775,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -11800,9 +6784,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -11812,9 +6793,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -11824,9 +6802,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -11836,9 +6811,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -11848,9 +6820,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -11860,9 +6829,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -11872,9 +6838,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -11884,111 +6847,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, empty salt, SHA-384, with empty info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [short derivedKey, empty salt, SHA-384, with empty info with missing deriveBits usage] - expected: FAIL - [short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [short derivedKey, empty salt, SHA-512, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -11998,9 +6907,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -12010,9 +6916,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -12022,9 +6925,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -12034,9 +6934,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -12046,9 +6943,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -12058,9 +6952,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -12070,9 +6961,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -12082,9 +6970,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -12094,111 +6979,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL - [short derivedKey, empty salt, SHA-512, with normal info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [short derivedKey, empty salt, SHA-512, with normal info with missing deriveBits usage] - expected: FAIL - [short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [short derivedKey, empty salt, SHA-512, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -12208,9 +7039,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -12220,9 +7048,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -12232,9 +7057,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -12244,9 +7066,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -12256,9 +7075,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -12268,9 +7084,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -12280,9 +7093,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -12292,9 +7102,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -12304,111 +7111,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, empty salt, SHA-512, with empty info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [short derivedKey, empty salt, SHA-512, with empty info with missing deriveBits usage] - expected: FAIL - [short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [short derivedKey, empty salt, SHA-1, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -12418,9 +7171,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -12430,9 +7180,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -12442,9 +7189,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -12454,9 +7198,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -12466,9 +7207,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -12478,9 +7216,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -12490,9 +7225,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -12502,9 +7234,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -12514,111 +7243,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL - [short derivedKey, empty salt, SHA-1, with normal info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [short derivedKey, empty salt, SHA-1, with normal info with missing deriveBits usage] - expected: FAIL - [short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [short derivedKey, empty salt, SHA-1, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -12630,9 +7305,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -12642,9 +7314,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -12654,9 +7323,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -12666,9 +7332,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -12678,9 +7341,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -12690,9 +7350,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -12702,9 +7359,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -12714,9 +7368,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -12726,111 +7377,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, empty salt, SHA-1, with empty info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [short derivedKey, empty salt, SHA-1, with empty info with missing deriveBits usage] - expected: FAIL - [short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, empty salt, SHA-256, with normal info] - expected: FAIL - - [short derivedKey, empty salt, SHA-256, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -12840,9 +7428,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -12852,9 +7437,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -12864,9 +7446,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -12876,9 +7455,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -12888,9 +7464,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -12900,9 +7473,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -12912,9 +7482,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -12924,9 +7491,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -12936,111 +7500,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [short derivedKey, empty salt, SHA-256, with normal info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [short derivedKey, empty salt, SHA-256, with normal info with missing deriveBits usage] - expected: FAIL - [short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [short derivedKey, empty salt, SHA-256, with empty info] - expected: FAIL - - [short derivedKey, empty salt, SHA-256, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -13050,9 +7551,6 @@ [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -13062,9 +7560,6 @@ [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -13074,9 +7569,6 @@ [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -13086,9 +7578,6 @@ [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -13098,9 +7587,6 @@ [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -13110,9 +7596,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -13122,9 +7605,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -13134,9 +7614,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -13146,213 +7623,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, empty salt, SHA-256, with empty info with non-multiple of 8 length] - expected: FAIL - - [short derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [short derivedKey, empty salt, SHA-256, with empty info with missing deriveBits usage] - expected: FAIL - [short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [short derivedKey, empty salt, PBKDF2, with normal info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [short derivedKey, empty salt, PBKDF2, with empty info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using short derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - [long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [long derivedKey, normal salt, SHA-384, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -13362,9 +7683,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -13374,9 +7692,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -13386,9 +7701,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -13398,9 +7710,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -13410,9 +7719,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -13422,9 +7728,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -13434,9 +7737,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -13446,9 +7746,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -13458,111 +7755,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL - [long derivedKey, normal salt, SHA-384, with normal info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [long derivedKey, normal salt, SHA-384, with normal info with missing deriveBits usage] - expected: FAIL - [long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [long derivedKey, normal salt, SHA-384, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -13572,9 +7815,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -13584,9 +7824,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -13596,9 +7833,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -13608,9 +7842,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -13620,9 +7851,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -13632,9 +7860,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -13644,9 +7869,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -13656,9 +7878,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -13668,111 +7887,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, normal salt, SHA-384, with empty info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [long derivedKey, normal salt, SHA-384, with empty info with missing deriveBits usage] - expected: FAIL - [long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [long derivedKey, normal salt, SHA-512, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -13782,9 +7947,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -13794,9 +7956,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -13806,9 +7965,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -13818,9 +7974,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -13830,9 +7983,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -13842,9 +7992,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -13854,9 +8001,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -13866,9 +8010,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -13878,111 +8019,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL - [long derivedKey, normal salt, SHA-512, with normal info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [long derivedKey, normal salt, SHA-512, with normal info with missing deriveBits usage] - expected: FAIL - [long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [long derivedKey, normal salt, SHA-512, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -13992,9 +8079,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -14004,9 +8088,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -14016,9 +8097,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -14028,9 +8106,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -14040,9 +8115,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -14052,9 +8124,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -14064,9 +8133,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -14076,9 +8142,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -14088,111 +8151,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, normal salt, SHA-512, with empty info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [long derivedKey, normal salt, SHA-512, with empty info with missing deriveBits usage] - expected: FAIL - [long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [long derivedKey, normal salt, SHA-1, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -14202,9 +8211,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -14214,9 +8220,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -14226,9 +8229,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -14238,9 +8238,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -14250,9 +8247,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -14262,9 +8256,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -14274,9 +8265,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -14286,9 +8274,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -14298,111 +8283,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL - [long derivedKey, normal salt, SHA-1, with normal info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [long derivedKey, normal salt, SHA-1, with normal info with missing deriveBits usage] - expected: FAIL - [long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [long derivedKey, normal salt, SHA-1, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -14412,9 +8343,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -14424,9 +8352,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -14436,9 +8361,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -14448,9 +8370,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -14460,9 +8379,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -14472,9 +8388,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -14484,9 +8397,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -14496,9 +8406,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -14508,111 +8415,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, normal salt, SHA-1, with empty info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [long derivedKey, normal salt, SHA-1, with empty info with missing deriveBits usage] - expected: FAIL - [long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, normal salt, SHA-256, with normal info] - expected: FAIL - - [long derivedKey, normal salt, SHA-256, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -14622,9 +8466,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -14634,9 +8475,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -14646,9 +8484,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -14658,9 +8493,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -14670,9 +8502,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -14682,9 +8511,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -14694,9 +8520,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -14706,9 +8529,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -14718,111 +8538,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [long derivedKey, normal salt, SHA-256, with normal info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [long derivedKey, normal salt, SHA-256, with normal info with missing deriveBits usage] - expected: FAIL - [long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [long derivedKey, normal salt, SHA-256, with empty info] - expected: FAIL - - [long derivedKey, normal salt, SHA-256, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -14832,9 +8589,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -14844,9 +8598,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -14856,9 +8607,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -14868,9 +8616,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -14880,9 +8625,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -14892,9 +8634,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -14904,9 +8643,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -14916,9 +8652,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -14928,213 +8661,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, normal salt, SHA-256, with empty info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [long derivedKey, normal salt, SHA-256, with empty info with missing deriveBits usage] - expected: FAIL - [long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, normal salt, PBKDF2, with normal info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, PBKDF2, with normal info] - expected: FAIL - - [long derivedKey, normal salt, PBKDF2, with empty info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, normal salt, PBKDF2, with empty info] - expected: FAIL - [long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [long derivedKey, empty salt, SHA-384, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -15144,9 +8721,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -15156,9 +8730,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -15168,9 +8739,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -15180,9 +8748,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -15192,9 +8757,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -15204,9 +8766,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -15216,9 +8775,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -15228,9 +8784,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -15240,111 +8793,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL - [long derivedKey, empty salt, SHA-384, with normal info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, empty salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [long derivedKey, empty salt, SHA-384, with normal info with missing deriveBits usage] - expected: FAIL - [long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [long derivedKey, empty salt, SHA-384, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -15354,9 +8853,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -15366,9 +8862,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -15378,9 +8871,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -15390,9 +8880,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -15402,9 +8889,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -15414,9 +8898,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -15426,9 +8907,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -15438,9 +8916,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -15450,102 +8925,51 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, empty salt, SHA-384, with empty info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, empty salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [long derivedKey, empty salt, SHA-384, with empty info with missing deriveBits usage] - expected: FAIL - [long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [long derivedKey, empty salt, SHA-512, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL @@ -15554,9 +8978,6 @@ [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -15566,9 +8987,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -15578,9 +8996,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -15590,9 +9005,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -15602,9 +9014,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -15614,9 +9023,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -15626,9 +9032,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -15638,9 +9041,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -15650,9 +9050,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -15662,111 +9059,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL - [long derivedKey, empty salt, SHA-512, with normal info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [long derivedKey, empty salt, SHA-512, with normal info with missing deriveBits usage] - expected: FAIL - [long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [long derivedKey, empty salt, SHA-512, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -15776,9 +9119,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -15788,9 +9128,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -15800,9 +9137,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -15812,9 +9146,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -15824,9 +9155,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -15836,9 +9164,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -15848,9 +9173,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -15860,9 +9182,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -15872,111 +9191,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, empty salt, SHA-512, with empty info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [long derivedKey, empty salt, SHA-512, with empty info with missing deriveBits usage] - expected: FAIL - [long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [long derivedKey, empty salt, SHA-1, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -15986,9 +9251,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -15998,9 +9260,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -16010,9 +9269,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -16022,9 +9278,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -16034,9 +9287,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -16046,9 +9296,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -16058,9 +9305,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -16070,9 +9314,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -16082,111 +9323,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL - [long derivedKey, empty salt, SHA-1, with normal info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [long derivedKey, empty salt, SHA-1, with normal info with missing deriveBits usage] - expected: FAIL - [long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [long derivedKey, empty salt, SHA-1, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -16196,9 +9383,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -16208,9 +9392,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -16220,9 +9401,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -16232,9 +9410,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -16244,9 +9419,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -16256,9 +9428,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -16268,9 +9437,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -16280,9 +9446,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -16292,111 +9455,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, empty salt, SHA-1, with empty info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [long derivedKey, empty salt, SHA-1, with empty info with missing deriveBits usage] - expected: FAIL - [long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, empty salt, SHA-256, with normal info] - expected: FAIL - - [long derivedKey, empty salt, SHA-256, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -16406,9 +9506,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -16418,9 +9515,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -16430,9 +9524,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -16442,9 +9533,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -16454,9 +9542,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -16466,9 +9551,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -16478,9 +9560,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -16490,9 +9569,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -16502,111 +9578,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [long derivedKey, empty salt, SHA-256, with normal info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [long derivedKey, empty salt, SHA-256, with normal info with missing deriveBits usage] - expected: FAIL - [long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [long derivedKey, empty salt, SHA-256, with empty info] - expected: FAIL - - [long derivedKey, empty salt, SHA-256, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -16616,9 +9629,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -16628,9 +9638,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -16640,9 +9647,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -16652,9 +9656,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -16664,9 +9665,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -16676,9 +9674,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -16688,9 +9683,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -16700,9 +9692,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -16712,213 +9701,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, empty salt, SHA-256, with empty info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [long derivedKey, empty salt, SHA-256, with empty info with missing deriveBits usage] - expected: FAIL - [long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, empty salt, PBKDF2, with normal info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [long derivedKey, empty salt, PBKDF2, with empty info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - [empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [empty derivedKey, normal salt, SHA-384, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -16928,9 +9761,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -16940,9 +9770,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -16952,9 +9779,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -16964,9 +9788,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -16976,9 +9797,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -16988,9 +9806,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -17000,9 +9815,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -17012,9 +9824,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -17024,111 +9833,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, normal salt, SHA-384, with normal info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [empty derivedKey, normal salt, SHA-384, with normal info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [empty derivedKey, normal salt, SHA-384, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -17138,9 +9893,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -17150,9 +9902,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -17162,9 +9911,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -17174,9 +9920,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -17186,9 +9929,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -17198,9 +9938,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -17210,9 +9947,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -17222,9 +9956,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -17234,111 +9965,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, normal salt, SHA-384, with empty info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [empty derivedKey, normal salt, SHA-384, with empty info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [empty derivedKey, normal salt, SHA-512, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -17348,9 +10025,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -17360,9 +10034,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -17372,9 +10043,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -17384,9 +10052,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -17396,9 +10061,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -17408,9 +10070,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -17420,9 +10079,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -17432,9 +10088,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -17444,111 +10097,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, normal salt, SHA-512, with normal info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [empty derivedKey, normal salt, SHA-512, with normal info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [empty derivedKey, normal salt, SHA-512, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -17558,9 +10157,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -17570,9 +10166,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -17582,9 +10175,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -17594,9 +10184,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -17606,9 +10193,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -17618,9 +10202,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -17630,9 +10211,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -17642,9 +10220,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -17654,111 +10229,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, normal salt, SHA-512, with empty info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [empty derivedKey, normal salt, SHA-512, with empty info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [empty derivedKey, normal salt, SHA-1, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -17768,9 +10289,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -17780,9 +10298,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -17792,9 +10307,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -17804,9 +10316,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -17816,9 +10325,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -17828,9 +10334,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -17840,9 +10343,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -17852,9 +10352,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -17864,111 +10361,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, normal salt, SHA-1, with normal info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [empty derivedKey, normal salt, SHA-1, with normal info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [empty derivedKey, normal salt, SHA-1, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -17978,9 +10421,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -17990,9 +10430,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -18002,9 +10439,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -18014,9 +10448,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -18026,9 +10457,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -18038,9 +10466,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -18050,9 +10475,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -18062,9 +10484,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -18074,111 +10493,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, normal salt, SHA-1, with empty info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [empty derivedKey, normal salt, SHA-1, with empty info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, normal salt, SHA-256, with normal info] - expected: FAIL - - [empty derivedKey, normal salt, SHA-256, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -18188,9 +10544,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -18200,9 +10553,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -18212,9 +10562,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -18224,9 +10571,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -18236,9 +10580,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -18248,9 +10589,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL @@ -18260,9 +10598,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL @@ -18272,9 +10607,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL @@ -18284,111 +10616,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, normal salt, SHA-256, with normal info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [empty derivedKey, normal salt, SHA-256, with normal info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, normal salt, SHA-256, with empty info] - expected: FAIL - - [empty derivedKey, normal salt, SHA-256, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -18398,9 +10667,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -18410,9 +10676,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -18422,9 +10685,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -18434,9 +10694,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -18446,9 +10703,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -18458,9 +10712,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL @@ -18470,17 +10721,11 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [hkdf.https.any.html?2001-3000] [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -18490,9 +10735,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -18502,9 +10744,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -18514,9 +10753,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -18526,9 +10762,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -18538,9 +10771,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -18550,9 +10780,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -18562,9 +10789,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -18574,9 +10798,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -18586,111 +10807,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL - [long derivedKey, empty salt, SHA-512, with normal info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, empty salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [long derivedKey, empty salt, SHA-512, with normal info with missing deriveBits usage] - expected: FAIL - [long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [long derivedKey, empty salt, SHA-512, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -18700,9 +10867,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -18712,9 +10876,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -18724,9 +10885,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -18736,9 +10894,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -18748,9 +10903,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -18760,9 +10912,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -18772,9 +10921,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -18784,9 +10930,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -18796,111 +10939,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, empty salt, SHA-512, with empty info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, empty salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [long derivedKey, empty salt, SHA-512, with empty info with missing deriveBits usage] - expected: FAIL - [long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [long derivedKey, empty salt, SHA-1, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -18910,9 +10999,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -18922,9 +11008,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -18934,9 +11017,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -18946,9 +11026,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -18958,9 +11035,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -18970,9 +11044,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -18982,9 +11053,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -18994,9 +11062,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -19006,111 +11071,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL - [long derivedKey, empty salt, SHA-1, with normal info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, empty salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [long derivedKey, empty salt, SHA-1, with normal info with missing deriveBits usage] - expected: FAIL - [long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [long derivedKey, empty salt, SHA-1, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -19120,9 +11131,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -19132,9 +11140,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -19144,9 +11149,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -19156,9 +11158,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -19168,9 +11167,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -19180,9 +11176,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -19192,9 +11185,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -19204,9 +11194,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -19216,111 +11203,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, empty salt, SHA-1, with empty info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, empty salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [long derivedKey, empty salt, SHA-1, with empty info with missing deriveBits usage] - expected: FAIL - [long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, empty salt, SHA-256, with normal info] - expected: FAIL - - [long derivedKey, empty salt, SHA-256, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -19330,9 +11254,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -19342,9 +11263,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -19354,9 +11272,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -19366,9 +11281,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -19378,9 +11290,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -19390,9 +11299,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -19402,9 +11308,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -19414,9 +11317,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -19426,111 +11326,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [long derivedKey, empty salt, SHA-256, with normal info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, empty salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [long derivedKey, empty salt, SHA-256, with normal info with missing deriveBits usage] - expected: FAIL - [long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [long derivedKey, empty salt, SHA-256, with empty info] - expected: FAIL - - [long derivedKey, empty salt, SHA-256, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -19540,9 +11377,6 @@ [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -19552,9 +11386,6 @@ [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -19564,9 +11395,6 @@ [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -19576,9 +11404,6 @@ [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -19588,9 +11413,6 @@ [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -19600,9 +11422,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -19612,9 +11431,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -19624,9 +11440,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -19636,213 +11449,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, empty salt, SHA-256, with empty info with non-multiple of 8 length] - expected: FAIL - - [long derivedKey, empty salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [long derivedKey, empty salt, SHA-256, with empty info with missing deriveBits usage] - expected: FAIL - [long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [long derivedKey, empty salt, PBKDF2, with normal info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, PBKDF2, with normal info] - expected: FAIL - - [long derivedKey, empty salt, PBKDF2, with empty info with non-digest algorithm PBKDF2] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 128 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 192 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: AES-KW length: 256 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-1 length: 256 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-384 length: 256 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - - [Derived key of type name: HMAC hash: SHA-512 length: 256 using long derivedKey, empty salt, PBKDF2, with empty info] - expected: FAIL - [empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [empty derivedKey, normal salt, SHA-384, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -19852,9 +11509,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -19864,9 +11518,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -19876,9 +11527,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -19888,9 +11536,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -19900,9 +11545,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage] expected: FAIL @@ -19912,9 +11554,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -19924,9 +11563,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -19936,9 +11572,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -19948,111 +11581,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, normal salt, SHA-384, with normal info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, normal salt, SHA-384, with normal info with bad hash name SHA384] - expected: FAIL - - [empty derivedKey, normal salt, SHA-384, with normal info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [empty derivedKey, normal salt, SHA-384, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -20062,9 +11641,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -20074,9 +11650,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -20086,9 +11659,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -20098,9 +11668,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -20110,9 +11677,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage] expected: FAIL @@ -20122,9 +11686,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -20134,9 +11695,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -20146,9 +11704,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL @@ -20158,111 +11713,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, normal salt, SHA-384, with empty info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, normal salt, SHA-384, with empty info with bad hash name SHA384] - expected: FAIL - - [empty derivedKey, normal salt, SHA-384, with empty info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [empty derivedKey, normal salt, SHA-512, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -20272,9 +11773,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -20284,9 +11782,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -20296,9 +11791,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -20308,9 +11800,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -20320,9 +11809,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage] expected: FAIL @@ -20332,9 +11818,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -20344,9 +11827,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -20356,9 +11836,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -20368,111 +11845,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, normal salt, SHA-512, with normal info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, normal salt, SHA-512, with normal info with bad hash name SHA512] - expected: FAIL - - [empty derivedKey, normal salt, SHA-512, with normal info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [empty derivedKey, normal salt, SHA-512, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -20482,9 +11905,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -20494,9 +11914,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -20506,9 +11923,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -20518,9 +11932,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -20530,9 +11941,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage] expected: FAIL @@ -20542,9 +11950,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -20554,9 +11959,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -20566,9 +11968,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL @@ -20578,111 +11977,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, normal salt, SHA-512, with empty info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, normal salt, SHA-512, with empty info with bad hash name SHA512] - expected: FAIL - - [empty derivedKey, normal salt, SHA-512, with empty info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [empty derivedKey, normal salt, SHA-1, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -20692,9 +12037,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -20704,9 +12046,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -20716,9 +12055,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -20728,9 +12064,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -20740,9 +12073,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage] expected: FAIL @@ -20752,9 +12082,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -20764,9 +12091,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -20776,9 +12100,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -20788,111 +12109,57 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, normal salt, SHA-1, with normal info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, normal salt, SHA-1, with normal info with bad hash name SHA1] - expected: FAIL - - [empty derivedKey, normal salt, SHA-1, with normal info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [empty derivedKey, normal salt, SHA-1, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -20902,9 +12169,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -20914,9 +12178,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -20926,9 +12187,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -20938,9 +12196,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -20950,9 +12205,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage] expected: FAIL @@ -20962,9 +12214,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -20974,9 +12223,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -20986,9 +12232,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL @@ -20998,111 +12241,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, normal salt, SHA-1, with empty info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, normal salt, SHA-1, with empty info with bad hash name SHA1] - expected: FAIL - - [empty derivedKey, normal salt, SHA-1, with empty info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, normal salt, SHA-256, with normal info] - expected: FAIL - - [empty derivedKey, normal salt, SHA-256, with normal info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with normal info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -21112,9 +12292,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -21124,9 +12301,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -21136,9 +12310,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -21148,9 +12319,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -21160,9 +12328,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage] expected: FAIL @@ -21172,9 +12337,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL @@ -21184,9 +12346,6 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL @@ -21196,9 +12355,6 @@ [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL @@ -21208,111 +12364,48 @@ [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL [Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, normal salt, SHA-256, with normal info with non-multiple of 8 length] - expected: FAIL - - [empty derivedKey, normal salt, SHA-256, with normal info with bad hash name SHA256] - expected: FAIL - - [empty derivedKey, normal salt, SHA-256, with normal info with missing deriveBits usage] - expected: FAIL - [empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [empty derivedKey, normal salt, SHA-256, with empty info] - expected: FAIL - - [empty derivedKey, normal salt, SHA-256, with empty info with 0 length] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with empty info] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -21322,9 +12415,6 @@ [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -21334,9 +12424,6 @@ [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -21346,9 +12433,6 @@ [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -21358,9 +12442,6 @@ [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -21370,9 +12451,6 @@ [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage] expected: FAIL @@ -21382,9 +12460,6 @@ [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - [Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL - [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] expected: FAIL @@ -21393,6 +12468,3 @@ [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info] expected: FAIL - - [Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with bad hash name SHA256] - expected: FAIL diff --git a/tests/wpt/meta/WebCryptoAPI/import_export/symmetric_importKey.https.any.js.ini b/tests/wpt/meta/WebCryptoAPI/import_export/symmetric_importKey.https.any.js.ini index a510d971761..2dd75098078 100644 --- a/tests/wpt/meta/WebCryptoAPI/import_export/symmetric_importKey.https.any.js.ini +++ b/tests/wpt/meta/WebCryptoAPI/import_export/symmetric_importKey.https.any.js.ini @@ -431,33 +431,6 @@ [Good parameters: 256 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [verify\])] expected: FAIL - [Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveBits\])] - expected: FAIL - - [Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveKey, deriveBits\])] - expected: FAIL - - [Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveKey\])] - expected: FAIL - - [Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveBits\])] - expected: FAIL - - [Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveKey, deriveBits\])] - expected: FAIL - - [Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveKey\])] - expected: FAIL - - [Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveBits\])] - expected: FAIL - - [Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveKey, deriveBits\])] - expected: FAIL - - [Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveKey\])] - expected: FAIL - [Empty Usages: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [\])] expected: FAIL @@ -764,15 +737,6 @@ [Good parameters: 256 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [sign, verify, sign, verify\])] expected: FAIL - [Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveBits, deriveKey, deriveBits, deriveKey\])] - expected: FAIL - - [Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveBits, deriveKey, deriveBits, deriveKey\])] - expected: FAIL - - [Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveBits, deriveKey, deriveBits, deriveKey\])] - expected: FAIL - [symmetric_importKey.https.any.worker.html] [Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [encrypt\])] @@ -1207,33 +1171,6 @@ [Good parameters: 256 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [verify\])] expected: FAIL - [Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveBits\])] - expected: FAIL - - [Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveKey, deriveBits\])] - expected: FAIL - - [Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveKey\])] - expected: FAIL - - [Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveBits\])] - expected: FAIL - - [Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveKey, deriveBits\])] - expected: FAIL - - [Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveKey\])] - expected: FAIL - - [Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveBits\])] - expected: FAIL - - [Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveKey, deriveBits\])] - expected: FAIL - - [Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveKey\])] - expected: FAIL - [Empty Usages: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [\])] expected: FAIL @@ -1539,12 +1476,3 @@ [Good parameters: 256 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [sign, verify, sign, verify\])] expected: FAIL - - [Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveBits, deriveKey, deriveBits, deriveKey\])] - expected: FAIL - - [Good parameters: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveBits, deriveKey, deriveBits, deriveKey\])] - expected: FAIL - - [Good parameters: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: HKDF}, false, [deriveBits, deriveKey, deriveBits, deriveKey\])] - expected: FAIL