From 83f8e888189cc265e73d6a3849f7b8c71c080181 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20W=C3=BClker?= Date: Tue, 19 Nov 2024 13:42:37 +0100 Subject: [PATCH] Implement AES-GCM support for subtlecrypto (#34269) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Support normalizing AES-GCM for encryption Signed-off-by: Simon Wülker * Implement "encrypt" operation for AES-GCM Signed-off-by: Simon Wülker * Allow importing AES-GCM keys Signed-off-by: Simon Wülker * Implement AES-GCM decryption Signed-off-by: Simon Wülker * Allow normalizing AES-GCM for "generate key" Signed-off-by: Simon Wülker * Update WPT expectations Signed-off-by: Simon Wülker * fmt Signed-off-by: Simon Wülker * Fix clippy errors Signed-off-by: Simon Wülker * Remove silly checks Signed-off-by: Simon Wülker * Support AES-GCM 128-bit encryption with 128 bit IV Signed-off-by: Simon Wülker * Support AES-GCM with wrapKey/unwrapKey Signed-off-by: Simon Wülker * Update WPT expectations (again) Signed-off-by: Simon Wülker --------- Signed-off-by: Simon Wülker --- Cargo.lock | 70 + Cargo.toml | 1 + components/script/Cargo.toml | 1 + components/script/dom/subtlecrypto.rs | 358 +- .../script/dom/webidls/SubtleCrypto.webidl | 7 + ...rithm-discards-context.https.window.js.ini | 15 - .../derive_bits_keys/hkdf.https.any.js.ini | 936 ---- .../derive_bits_keys/pbkdf2.https.any.js.ini | 4806 +---------------- .../encrypt_decrypt/aes_gcm.https.any.js.ini | 1736 +----- .../aes_gcm_256_iv.https.any.js.ini | 1736 +----- .../failures_AES-GCM.https.any.js.ini | 2486 --------- .../successes_AES-GCM.https.any.js.ini | 1730 ------ .../symmetric_importKey.https.any.js.ini | 764 +-- 13 files changed, 1168 insertions(+), 13478 deletions(-) delete mode 100644 tests/wpt/meta/WebCryptoAPI/generateKey/failures_AES-GCM.https.any.js.ini delete mode 100644 tests/wpt/meta/WebCryptoAPI/generateKey/successes_AES-GCM.https.any.js.ini diff --git a/Cargo.lock b/Cargo.lock index e97ee886403..fc964a33289 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -42,6 +42,16 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" +[[package]] +name = "aead" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" +dependencies = [ + "crypto-common", + "generic-array", +] + [[package]] name = "aes" version = "0.8.4" @@ -53,6 +63,20 @@ dependencies = [ "cpufeatures", ] +[[package]] +name = "aes-gcm" +version = "0.10.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" +dependencies = [ + "aead", + "aes", + "cipher", + "ctr", + "ghash", + "subtle", +] + [[package]] name = "aes-kw" version = "0.2.1" @@ -1297,6 +1321,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" dependencies = [ "generic-array", + "rand_core", "typenum", ] @@ -2322,6 +2347,16 @@ dependencies = [ "wasi 0.11.0+wasi-snapshot-preview1", ] +[[package]] +name = "ghash" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" +dependencies = [ + "opaque-debug", + "polyval", +] + [[package]] name = "gif" version = "0.13.1" @@ -5176,6 +5211,12 @@ version = "11.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9" +[[package]] +name = "opaque-debug" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" + [[package]] name = "openxr" version = "0.19.0" @@ -5528,6 +5569,18 @@ dependencies = [ "windows-sys 0.59.0", ] +[[package]] +name = "polyval" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" +dependencies = [ + "cfg-if", + "cpufeatures", + "opaque-debug", + "universal-hash", +] + [[package]] name = "powerfmt" version = "0.2.0" @@ -6047,6 +6100,7 @@ version = "0.0.1" dependencies = [ "accountable-refcell", "aes", + "aes-gcm", "aes-kw", "app_units", "arrayvec", @@ -7084,6 +7138,12 @@ dependencies = [ "webrender_api", ] +[[package]] +name = "subtle" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" + [[package]] name = "surfman" version = "0.9.8" @@ -7765,6 +7825,16 @@ version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" +[[package]] +name = "universal-hash" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" +dependencies = [ + "crypto-common", + "subtle", +] + [[package]] name = "untrusted" version = "0.9.0" diff --git a/Cargo.toml b/Cargo.toml index 8689d40e36c..98e0e92940c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,6 +19,7 @@ rust-version = "1.80.1" accountable-refcell = "0.2.0" aes = "0.8.4" aes-kw = { version = "0.2.1", features = ["alloc"] } +aes-gcm = "0.10.3" app_units = "0.7" arrayvec = "0.7" async-tungstenite = { version = "0.23", features = ["tokio-rustls-webpki-roots"] } diff --git a/components/script/Cargo.toml b/components/script/Cargo.toml index 6897f73d8a8..c1b8bed89b6 100644 --- a/components/script/Cargo.toml +++ b/components/script/Cargo.toml @@ -29,6 +29,7 @@ serde_json = { workspace = true } [dependencies] aes = { workspace = true } aes-kw = { workspace = true } +aes-gcm = { workspace = true } accountable-refcell = { workspace = true, optional = true } app_units = { workspace = true } arrayvec = { workspace = true } diff --git a/components/script/dom/subtlecrypto.rs b/components/script/dom/subtlecrypto.rs index 9ff82f02945..e3638d34b04 100644 --- a/components/script/dom/subtlecrypto.rs +++ b/components/script/dom/subtlecrypto.rs @@ -10,8 +10,10 @@ use aes::cipher::block_padding::Pkcs7; use aes::cipher::generic_array::GenericArray; use aes::cipher::{BlockDecryptMut, BlockEncryptMut, KeyIvInit, StreamCipher}; use aes::{Aes128, Aes192, Aes256}; +use aes_gcm::{AeadInPlace, AesGcm, KeyInit}; use aes_kw::{KekAes128, KekAes192, KekAes256}; use base64::prelude::*; +use cipher::consts::{U12, U16, U32}; use dom_struct::dom_struct; use js::conversions::ConversionResult; use js::jsapi::{JSObject, JS_NewObject}; @@ -28,9 +30,10 @@ use crate::dom::bindings::codegen::Bindings::CryptoKeyBinding::{ CryptoKeyMethods, KeyType, KeyUsage, }; use crate::dom::bindings::codegen::Bindings::SubtleCryptoBinding::{ - AesCbcParams, AesCtrParams, AesDerivedKeyParams, AesKeyAlgorithm, AesKeyGenParams, Algorithm, - AlgorithmIdentifier, HkdfParams, HmacImportParams, HmacKeyAlgorithm, HmacKeyGenParams, - JsonWebKey, KeyAlgorithm, KeyFormat, Pbkdf2Params, SubtleCryptoMethods, + AesCbcParams, AesCtrParams, AesDerivedKeyParams, AesGcmParams, AesKeyAlgorithm, + AesKeyGenParams, Algorithm, AlgorithmIdentifier, HkdfParams, HmacImportParams, + HmacKeyAlgorithm, HmacKeyGenParams, JsonWebKey, KeyAlgorithm, KeyFormat, Pbkdf2Params, + SubtleCryptoMethods, }; use crate::dom::bindings::codegen::UnionTypes::{ ArrayBufferViewOrArrayBuffer, ArrayBufferViewOrArrayBufferOrJsonWebKey, @@ -108,6 +111,14 @@ type Aes128Ctr = ctr::Ctr64BE; type Aes192Ctr = ctr::Ctr64BE; type Aes256Ctr = ctr::Ctr64BE; +type Aes128Gcm96Iv = AesGcm; +type Aes128Gcm128Iv = AesGcm; +type Aes192Gcm96Iv = AesGcm; +type Aes256Gcm96Iv = AesGcm; +type Aes128Gcm256Iv = AesGcm; +type Aes192Gcm256Iv = AesGcm; +type Aes256Gcm256Iv = AesGcm; + #[dom_struct] pub struct SubtleCrypto { reflector_: Reflector, @@ -838,7 +849,7 @@ impl SubtleCryptoMethods for SubtleCrypto { return; } let exported_key = match alg_name.as_str() { - ALG_AES_CBC | ALG_AES_CTR | ALG_AES_KW => subtle.export_key_aes(format, &key), + ALG_AES_CBC | ALG_AES_CTR | ALG_AES_KW | ALG_AES_GCM => subtle.export_key_aes(format, &key), _ => Err(Error::NotSupported), }; match exported_key { @@ -965,6 +976,11 @@ impl SubtleCryptoMethods for SubtleCrypto { ¶ms, &wrapping_key, &bytes, cx, array_buffer_ptr.handle_mut() ) }, + KeyWrapAlgorithm::AesGcm(params) => { + subtle.encrypt_aes_gcm( + ¶ms, &wrapping_key, &bytes, cx, array_buffer_ptr.handle_mut() + ) + }, }; match result { @@ -1047,6 +1063,11 @@ impl SubtleCryptoMethods for SubtleCrypto { ¶ms, &unwrapping_key, &wrapped_key_bytes, cx, array_buffer_ptr.handle_mut() ) }, + KeyWrapAlgorithm::AesGcm(params) => { + subtle.decrypt_aes_gcm( + ¶ms, &unwrapping_key, &wrapped_key_bytes, cx, array_buffer_ptr.handle_mut() + ) + }, }; let bytes = match result { @@ -1139,6 +1160,34 @@ impl From> for SubtleAesCtrParams { } } +#[derive(Clone, Debug)] +pub struct SubtleAesGcmParams { + pub name: String, + pub iv: Vec, + pub additional_data: Option>, + pub tag_length: Option, +} + +impl From> for SubtleAesGcmParams { + fn from(params: RootedTraceableBox) -> Self { + let iv = match ¶ms.iv { + ArrayBufferViewOrArrayBuffer::ArrayBufferView(view) => view.to_vec(), + ArrayBufferViewOrArrayBuffer::ArrayBuffer(buffer) => buffer.to_vec(), + }; + let additional_data = params.additionalData.as_ref().map(|data| match data { + ArrayBufferViewOrArrayBuffer::ArrayBufferView(view) => view.to_vec(), + ArrayBufferViewOrArrayBuffer::ArrayBuffer(buffer) => buffer.to_vec(), + }); + + SubtleAesGcmParams { + name: params.parent.name.to_string(), + iv, + additional_data, + tag_length: params.tagLength, + } + } +} + #[derive(Clone, Debug)] pub struct SubtleAesKeyGenParams { pub name: String, @@ -1313,6 +1362,7 @@ enum ImportKeyAlgorithm { AesCbc, AesCtr, AesKw, + AesGcm, Hmac(SubtleHmacImportParams), Pbkdf2, Hkdf, @@ -1329,9 +1379,11 @@ enum DeriveBitsAlgorithm { /// A normalized algorithm returned by [`normalize_algorithm`] with operation `"encrypt"` or `"decrypt"` /// /// [`normalize_algorithm`]: https://w3c.github.io/webcrypto/#algorithm-normalization-normalize-an-algorithm +#[allow(clippy::enum_variant_names)] enum EncryptionAlgorithm { AesCbc(SubtleAesCbcParams), AesCtr(SubtleAesCtrParams), + AesGcm(SubtleAesGcmParams), } /// A normalized algorithm returned by [`normalize_algorithm`] with operation `"sign"` or `"verify"` @@ -1357,6 +1409,7 @@ enum KeyWrapAlgorithm { AesKw, AesCbc(SubtleAesCbcParams), AesCtr(SubtleAesCtrParams), + AesGcm(SubtleAesGcmParams), } macro_rules! value_from_js_object { @@ -1381,7 +1434,8 @@ fn normalize_algorithm_for_get_key_length( let name = algorithm.name.str(); let normalized_algorithm = if name.eq_ignore_ascii_case(ALG_AES_CBC) || - name.eq_ignore_ascii_case(ALG_AES_CTR) + name.eq_ignore_ascii_case(ALG_AES_CTR) || + name.eq_ignore_ascii_case(ALG_AES_GCM) { let params = value_from_js_object!(AesDerivedKeyParams, cx, value); GetKeyLengthAlgorithm::Aes(params.length) @@ -1454,6 +1508,7 @@ fn normalize_algorithm_for_import_key( ALG_AES_CBC => ImportKeyAlgorithm::AesCbc, ALG_AES_CTR => ImportKeyAlgorithm::AesCtr, ALG_AES_KW => ImportKeyAlgorithm::AesKw, + ALG_AES_GCM => ImportKeyAlgorithm::AesGcm, ALG_PBKDF2 => ImportKeyAlgorithm::Pbkdf2, ALG_HKDF => ImportKeyAlgorithm::Hkdf, _ => return Err(Error::NotSupported), @@ -1510,6 +1565,9 @@ fn normalize_algorithm_for_encrypt_or_decrypt( } else if name.eq_ignore_ascii_case(ALG_AES_CTR) { let params = value_from_js_object!(AesCtrParams, cx, value); EncryptionAlgorithm::AesCtr(params.into()) + } else if name.eq_ignore_ascii_case(ALG_AES_GCM) { + let params = value_from_js_object!(AesGcmParams, cx, value); + EncryptionAlgorithm::AesGcm(params.into()) } else { return Err(Error::NotSupported); }; @@ -1557,7 +1615,8 @@ fn normalize_algorithm_for_generate_key( let name = algorithm.name.str(); let normalized_algorithm = if name.eq_ignore_ascii_case(ALG_AES_CBC) || name.eq_ignore_ascii_case(ALG_AES_CTR) || - name.eq_ignore_ascii_case(ALG_AES_KW) + name.eq_ignore_ascii_case(ALG_AES_KW) || + name.eq_ignore_ascii_case(ALG_AES_GCM) { let params = value_from_js_object!(AesKeyGenParams, cx, value); KeyGenerationAlgorithm::Aes(params.into()) @@ -1603,6 +1662,13 @@ fn normalize_algorithm_for_key_wrap( rooted!(in(*cx) let value = ObjectValue(obj.get())); KeyWrapAlgorithm::AesCtr(value_from_js_object!(AesCtrParams, cx, value).into()) }, + ALG_AES_GCM => { + let AlgorithmIdentifier::Object(obj) = algorithm else { + return Err(Error::Syntax); + }; + rooted!(in(*cx) let value = ObjectValue(obj.get())); + KeyWrapAlgorithm::AesGcm(value_from_js_object!(AesGcmParams, cx, value).into()) + }, _ => return Err(Error::NotSupported), }; @@ -1730,6 +1796,250 @@ impl SubtleCrypto { Ok(ciphertext) } + /// + fn encrypt_aes_gcm( + &self, + params: &SubtleAesGcmParams, + key: &CryptoKey, + plaintext: &[u8], + cx: JSContext, + handle: MutableHandleObject, + ) -> Result, Error> { + // Step 1. If plaintext has a length greater than 2^39 - 256 bytes, then throw an OperationError. + if plaintext.len() as u64 > (2 << 39) - 256 { + return Err(Error::Operation); + } + + // Step 2. If the iv member of normalizedAlgorithm has a length greater than 2^64 - 1 bytes, + // then throw an OperationError. + // NOTE: servo does not currently support 128-bit platforms, so this can never happen + + // Step 3. If the additionalData member of normalizedAlgorithm is present and has a length greater than 2^64 - 1 + // bytes, then throw an OperationError. + if params + .additional_data + .as_ref() + .is_some_and(|data| data.len() > u64::MAX as usize) + { + return Err(Error::Operation); + } + + // Step 4. + let tag_length = match params.tag_length { + // If the tagLength member of normalizedAlgorithm is not present: + None => { + // Let tagLength be 128. + 128 + }, + // If the tagLength member of normalizedAlgorithm is one of 32, 64, 96, 104, 112, 120 or 128: + Some(length) if matches!(length, 32 | 64 | 96 | 104 | 112 | 120 | 128) => { + // Let tagLength be equal to the tagLength member of normalizedAlgorithm + length + }, + // Otherwise: + _ => { + // throw an OperationError. + return Err(Error::Operation); + }, + }; + + // Step 5. Let additionalData be the contents of the additionalData member of normalizedAlgorithm if present + // or the empty octet string otherwise. + let additional_data = params.additional_data.as_deref().unwrap_or_default(); + + // Step 6. Let C and T be the outputs that result from performing the Authenticated Encryption Function + // described in Section 7.1 of [NIST-SP800-38D] using AES as the block cipher, the contents of the iv member + // of normalizedAlgorithm as the IV input parameter, the contents of additionalData as the A input parameter, + // tagLength as the t pre-requisite and the contents of plaintext as the input plaintext. + let key_length = key.handle().as_bytes().len(); + let iv_length = params.iv.len(); + let mut ciphertext = plaintext.to_vec(); + let key_bytes = key.handle().as_bytes(); + let tag = match (key_length, iv_length) { + (16, 12) => { + let nonce = GenericArray::from_slice(¶ms.iv); + ::new_from_slice(key_bytes) + .expect("key length did not match") + .encrypt_in_place_detached(nonce, additional_data, &mut ciphertext) + }, + (16, 16) => { + let nonce = GenericArray::from_slice(¶ms.iv); + ::new_from_slice(key_bytes) + .expect("key length did not match") + .encrypt_in_place_detached(nonce, additional_data, &mut ciphertext) + }, + (20, 12) => { + let nonce = GenericArray::from_slice(¶ms.iv); + ::new_from_slice(key_bytes) + .expect("key length did not match") + .encrypt_in_place_detached(nonce, additional_data, &mut ciphertext) + }, + (32, 12) => { + let nonce = GenericArray::from_slice(¶ms.iv); + ::new_from_slice(key_bytes) + .expect("key length did not match") + .encrypt_in_place_detached(nonce, additional_data, &mut ciphertext) + }, + (16, 32) => { + let nonce = GenericArray::from_slice(¶ms.iv); + ::new_from_slice(key_bytes) + .expect("key length did not match") + .encrypt_in_place_detached(nonce, additional_data, &mut ciphertext) + }, + (20, 32) => { + let nonce = GenericArray::from_slice(¶ms.iv); + ::new_from_slice(key_bytes) + .expect("key length did not match") + .encrypt_in_place_detached(nonce, additional_data, &mut ciphertext) + }, + (32, 32) => { + let nonce = GenericArray::from_slice(¶ms.iv); + ::new_from_slice(key_bytes) + .expect("key length did not match") + .encrypt_in_place_detached(nonce, additional_data, &mut ciphertext) + }, + _ => { + log::warn!( + "Missing AES-GCM encryption implementation with {key_length}-byte key and {iv_length}-byte IV" + ); + return Err(Error::NotSupported); + }, + }; + + // Step 7. Let ciphertext be equal to C | T, where '|' denotes concatenation. + ciphertext.extend_from_slice(&tag.unwrap()[..tag_length as usize / 8]); + + // Step 8. Return the result of creating an ArrayBuffer containing ciphertext. + create_buffer_source::(cx, &ciphertext, handle) + .expect("failed to create buffer source for encrypted ciphertext"); + + Ok(ciphertext) + } + + /// + fn decrypt_aes_gcm( + &self, + params: &SubtleAesGcmParams, + key: &CryptoKey, + ciphertext: &[u8], + cx: JSContext, + handle: MutableHandleObject, + ) -> Result, Error> { + // Step 1. + // FIXME: aes_gcm uses a fixed tag length + let tag_length = match params.tag_length { + // If the tagLength member of normalizedAlgorithm is not present: + None => { + // Let tagLength be 128. + 128 + }, + // If the tagLength member of normalizedAlgorithm is one of 32, 64, 96, 104, 112, 120 or 128: + Some(length) if matches!(length, 32 | 64 | 96 | 104 | 112 | 120 | 128) => { + // Let tagLength be equal to the tagLength member of normalizedAlgorithm + length as usize + }, + // Otherwise: + _ => { + // throw an OperationError. + return Err(Error::Operation); + }, + }; + + // Step 2. If ciphertext has a length less than tagLength bits, then throw an OperationError. + if ciphertext.len() < tag_length / 8 { + return Err(Error::Operation); + } + + // Step 3. If the iv member of normalizedAlgorithm has a length greater than 2^64 - 1 bytes, + // then throw an OperationError. + // NOTE: servo does not currently support 128-bit platforms, so this can never happen + + // Step 4. If the additionalData member of normalizedAlgorithm is present and has a length greater than 2^64 - 1 + // bytes, then throw an OperationError. + // NOTE: servo does not currently support 128-bit platforms, so this can never happen + + // Step 5. Let tag be the last tagLength bits of ciphertext. + // Step 6. Let actualCiphertext be the result of removing the last tagLength bits from ciphertext. + // NOTE: aes_gcm splits the ciphertext for us + + // Step 7. Let additionalData be the contents of the additionalData member of normalizedAlgorithm if present or + // the empty octet string otherwise. + let additional_data = params.additional_data.as_deref().unwrap_or_default(); + + // Step 8. Perform the Authenticated Decryption Function described in Section 7.2 of [NIST-SP800-38D] using AES + // as the block cipher, the contents of the iv member of normalizedAlgorithm as the IV input parameter, the + // contents of additionalData as the A input parameter, tagLength as the t pre-requisite, the contents of + // actualCiphertext as the input ciphertext, C and the contents of tag as the authentication tag, T. + let mut plaintext = ciphertext.to_vec(); + let key_length = key.handle().as_bytes().len(); + let iv_length = params.iv.len(); + let key_bytes = key.handle().as_bytes(); + let result = match (key_length, iv_length) { + (16, 12) => { + let nonce = GenericArray::from_slice(¶ms.iv); + ::new_from_slice(key_bytes) + .expect("key length did not match") + .decrypt_in_place(nonce, additional_data, &mut plaintext) + }, + (16, 16) => { + let nonce = GenericArray::from_slice(¶ms.iv); + ::new_from_slice(key_bytes) + .expect("key length did not match") + .decrypt_in_place(nonce, additional_data, &mut plaintext) + }, + (20, 12) => { + let nonce = GenericArray::from_slice(¶ms.iv); + ::new_from_slice(key_bytes) + .expect("key length did not match") + .decrypt_in_place(nonce, additional_data, &mut plaintext) + }, + (32, 12) => { + let nonce = GenericArray::from_slice(¶ms.iv); + ::new_from_slice(key_bytes) + .expect("key length did not match") + .decrypt_in_place(nonce, additional_data, &mut plaintext) + }, + (16, 32) => { + let nonce = GenericArray::from_slice(¶ms.iv); + ::new_from_slice(key_bytes) + .expect("key length did not match") + .decrypt_in_place(nonce, additional_data, &mut plaintext) + }, + (20, 32) => { + let nonce = GenericArray::from_slice(¶ms.iv); + ::new_from_slice(key_bytes) + .expect("key length did not match") + .decrypt_in_place(nonce, additional_data, &mut plaintext) + }, + (32, 32) => { + let nonce = GenericArray::from_slice(¶ms.iv); + ::new_from_slice(key_bytes) + .expect("key length did not match") + .decrypt_in_place(nonce, additional_data, &mut plaintext) + }, + _ => { + log::warn!( + "Missing AES-GCM decryption implementation with {key_length}-byte key and {iv_length}-byte IV" + ); + return Err(Error::NotSupported); + }, + }; + + // If the result of the algorithm is the indication of inauthenticity, "FAIL": + if result.is_err() { + // throw an OperationError + return Err(Error::Operation); + } + // Otherwise: + // Let plaintext be the output P of the Authenticated Decryption Function. + + // Step 9. Return the result of creating an ArrayBuffer containing plaintext. + create_buffer_source::(cx, &plaintext, handle) + .expect("failed to create buffer source for decrypted plaintext"); + + Ok(plaintext) + } + /// /// /// @@ -1750,7 +2060,7 @@ impl SubtleCrypto { }; match key_gen_params.name.as_str() { - ALG_AES_CBC | ALG_AES_CTR => { + ALG_AES_CBC | ALG_AES_CTR | ALG_AES_GCM => { if usages.iter().any(|usage| { !matches!( usage, @@ -1780,6 +2090,7 @@ impl SubtleCrypto { ALG_AES_CBC => DOMString::from(ALG_AES_CBC), ALG_AES_CTR => DOMString::from(ALG_AES_CTR), ALG_AES_KW => DOMString::from(ALG_AES_KW), + ALG_AES_GCM => DOMString::from(ALG_AES_GCM), _ => return Err(Error::NotSupported), }; @@ -2303,6 +2614,7 @@ fn data_to_jwk_params(alg: &str, size: &str, key: &[u8]) -> (DOMString, DOMStrin ALG_AES_CBC => DOMString::from(format!("A{}CBC", size)), ALG_AES_CTR => DOMString::from(format!("A{}CTR", size)), ALG_AES_KW => DOMString::from(format!("A{}KW", size)), + ALG_AES_GCM => DOMString::from(format!("A{}GCM", size)), _ => unreachable!(), }; let data = base64::engine::general_purpose::STANDARD_NO_PAD.encode(key); @@ -2529,6 +2841,9 @@ impl ImportKeyAlgorithm { Self::AesKw => { subtle.import_key_aes(format, secret, extractable, key_usages, ALG_AES_KW) }, + Self::AesGcm => { + subtle.import_key_aes(format, secret, extractable, key_usages, ALG_AES_GCM) + }, Self::Hmac(params) => { subtle.import_key_hmac(params, format, secret, extractable, key_usages) }, @@ -2551,8 +2866,9 @@ impl EncryptionAlgorithm { /// fn name(&self) -> &str { match self { - Self::AesCbc(key_gen_params) => &key_gen_params.name, - Self::AesCtr(key_gen_params) => &key_gen_params.name, + Self::AesCbc(params) => ¶ms.name, + Self::AesCtr(params) => ¶ms.name, + Self::AesGcm(params) => ¶ms.name, } } @@ -2566,12 +2882,9 @@ impl EncryptionAlgorithm { result: MutableHandleObject, ) -> Result, Error> { match self { - Self::AesCbc(key_gen_params) => { - subtle.encrypt_aes_cbc(key_gen_params, key, data, cx, result) - }, - Self::AesCtr(key_gen_params) => { - subtle.encrypt_decrypt_aes_ctr(key_gen_params, key, data, cx, result) - }, + Self::AesCbc(params) => subtle.encrypt_aes_cbc(params, key, data, cx, result), + Self::AesCtr(params) => subtle.encrypt_decrypt_aes_ctr(params, key, data, cx, result), + Self::AesGcm(params) => subtle.encrypt_aes_gcm(params, key, data, cx, result), } } @@ -2585,12 +2898,9 @@ impl EncryptionAlgorithm { result: MutableHandleObject, ) -> Result, Error> { match self { - Self::AesCbc(key_gen_params) => { - subtle.decrypt_aes_cbc(key_gen_params, key, data, cx, result) - }, - Self::AesCtr(key_gen_params) => { - subtle.encrypt_decrypt_aes_ctr(key_gen_params, key, data, cx, result) - }, + Self::AesCbc(params) => subtle.decrypt_aes_cbc(params, key, data, cx, result), + Self::AesCtr(params) => subtle.encrypt_decrypt_aes_ctr(params, key, data, cx, result), + Self::AesGcm(params) => subtle.decrypt_aes_gcm(params, key, data, cx, result), } } } @@ -2684,6 +2994,7 @@ impl KeyWrapAlgorithm { Self::AesKw => ALG_AES_KW, Self::AesCbc(key_gen_params) => &key_gen_params.name, Self::AesCtr(key_gen_params) => &key_gen_params.name, + Self::AesGcm(_) => ALG_AES_GCM, } } } @@ -2704,7 +3015,10 @@ fn parse_jwk(bytes: &[u8], alg: ImportKeyAlgorithm, extractable: bool) -> Result } match alg { - ImportKeyAlgorithm::AesCbc | ImportKeyAlgorithm::AesCtr | ImportKeyAlgorithm::AesKw => { + ImportKeyAlgorithm::AesCbc | + ImportKeyAlgorithm::AesCtr | + ImportKeyAlgorithm::AesKw | + ImportKeyAlgorithm::AesGcm => { if kty != "oct" { return Err(Error::Data); } diff --git a/components/script/dom/webidls/SubtleCrypto.webidl b/components/script/dom/webidls/SubtleCrypto.webidl index f966bf11b91..be01cebf589 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/#aes-gcm-params +dictionary AesGcmParams : Algorithm { + required BufferSource iv; + BufferSource additionalData; + [EnforceRange] octet tagLength; +}; + // https://w3c.github.io/webcrypto/#dfn-HmacImportParams dictionary HmacImportParams : Algorithm { required HashAlgorithmIdentifier hash; 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 4efc26a718d..641b4482f9b 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 @@ -1,22 +1,7 @@ [algorithm-discards-context.https.window.html] expected: TIMEOUT - [Context is discarded in encrypt] - expected: TIMEOUT - - [Context is discarded in decrypt] - expected: TIMEOUT - [Context is discarded in sign] expected: TIMEOUT [Context is discarded in verify] expected: TIMEOUT - - [Context is discarded in wrapKey] - expected: TIMEOUT - - [Context is discarded in unwrapKey] - expected: TIMEOUT - - [Context is discarded in unwrapKey (2)] - expected: TIMEOUT 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 694cd987c9f..191fb83056d 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 @@ -59,27 +59,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL @@ -179,27 +170,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL @@ -299,27 +281,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL @@ -419,27 +392,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL @@ -539,27 +503,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL @@ -659,27 +614,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL @@ -770,27 +716,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL @@ -881,27 +815,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL @@ -1027,27 +949,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL @@ -1147,27 +1060,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL @@ -1267,27 +1171,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL @@ -1387,27 +1282,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL @@ -1507,27 +1393,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL @@ -1627,27 +1504,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL @@ -1738,27 +1606,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL @@ -1849,27 +1705,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL @@ -1969,27 +1813,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL @@ -2089,27 +1924,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL @@ -2209,27 +2035,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL @@ -2329,27 +2146,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL @@ -2449,27 +2257,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL @@ -2569,9 +2368,6 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL @@ -2679,27 +2475,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL @@ -2799,27 +2586,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL @@ -2919,27 +2697,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL @@ -3039,27 +2808,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL @@ -3159,27 +2919,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL @@ -3279,27 +3030,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL @@ -3390,27 +3132,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL @@ -3501,27 +3231,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL @@ -3608,18 +3326,12 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL @@ -3710,27 +3422,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL @@ -3821,27 +3521,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL @@ -3941,27 +3629,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL @@ -4061,27 +3740,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL @@ -4181,27 +3851,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL @@ -4301,27 +3962,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL @@ -4421,27 +4073,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL @@ -4541,27 +4184,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL @@ -4652,27 +4286,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL @@ -4763,27 +4385,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL @@ -4883,27 +4493,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL @@ -5003,27 +4604,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL @@ -5203,27 +4795,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL @@ -5323,27 +4906,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL @@ -5443,27 +5017,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL @@ -5563,27 +5128,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL @@ -5683,27 +5239,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL @@ -5803,27 +5350,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL @@ -5914,27 +5452,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL @@ -6025,27 +5551,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL @@ -6145,27 +5659,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL @@ -6265,27 +5770,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL @@ -6385,27 +5881,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL @@ -6505,27 +5992,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL @@ -6625,27 +6103,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL @@ -6745,9 +6214,6 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL @@ -6798,18 +6264,12 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL @@ -6900,27 +6360,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL @@ -7011,27 +6459,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL @@ -7131,27 +6567,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL @@ -7251,27 +6678,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL @@ -7371,27 +6789,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL @@ -7491,27 +6900,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL @@ -7611,27 +7011,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL @@ -7731,27 +7122,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL @@ -7842,27 +7224,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL @@ -7953,27 +7323,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL @@ -8073,27 +7431,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL @@ -8193,27 +7542,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL @@ -8354,27 +7694,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL @@ -8474,27 +7805,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL @@ -8594,27 +7916,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL @@ -8714,27 +8027,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL @@ -8825,27 +8129,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL @@ -8936,27 +8228,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL @@ -9056,27 +8336,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL @@ -9176,27 +8447,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL @@ -9296,27 +8558,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL @@ -9416,27 +8669,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL @@ -9536,27 +8780,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL @@ -9656,27 +8891,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL @@ -9767,27 +8993,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL @@ -9878,27 +9092,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL @@ -9982,27 +9184,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL @@ -10102,27 +9295,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL @@ -10222,27 +9406,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL @@ -10342,27 +9517,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL @@ -10453,27 +9619,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL @@ -10564,27 +9718,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long derivedKey, empty salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL @@ -10684,27 +9826,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with wrong (ECDH) key] expected: FAIL @@ -10804,27 +9937,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with wrong (ECDH) key] expected: FAIL @@ -10924,27 +10048,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with wrong (ECDH) key] expected: FAIL @@ -11044,27 +10159,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with wrong (ECDH) key] expected: FAIL @@ -11164,27 +10270,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with wrong (ECDH) key] expected: FAIL @@ -11284,27 +10381,18 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with wrong (ECDH) key] expected: FAIL @@ -11395,27 +10483,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with wrong (ECDH) key] expected: FAIL @@ -11506,27 +10582,15 @@ [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL - [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 missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with wrong (ECDH) key] expected: FAIL diff --git a/tests/wpt/meta/WebCryptoAPI/derive_bits_keys/pbkdf2.https.any.js.ini b/tests/wpt/meta/WebCryptoAPI/derive_bits_keys/pbkdf2.https.any.js.ini index 3a37be17b7d..973457b9a09 100644 --- a/tests/wpt/meta/WebCryptoAPI/derive_bits_keys/pbkdf2.https.any.js.ini +++ b/tests/wpt/meta/WebCryptoAPI/derive_bits_keys/pbkdf2.https.any.js.ini @@ -38,30 +38,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -119,15 +101,6 @@ [long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-384, with 0 iterations] expected: FAIL @@ -155,30 +128,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -254,30 +209,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -353,33 +290,6 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 100000 iterations] expected: FAIL @@ -434,15 +344,6 @@ [long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 0 iterations] expected: FAIL @@ -470,33 +371,6 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 1 iterations] expected: FAIL @@ -569,33 +443,6 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 1000 iterations] expected: FAIL @@ -668,33 +515,6 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 100000 iterations] expected: FAIL @@ -749,15 +569,6 @@ [long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 0 iterations] expected: FAIL @@ -785,33 +596,6 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 1 iterations] expected: FAIL @@ -884,33 +668,6 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 1000 iterations] expected: FAIL @@ -983,33 +740,6 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 100000 iterations] expected: FAIL @@ -1064,15 +794,6 @@ [long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 0 iterations] expected: FAIL @@ -1100,33 +821,6 @@ [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 1 iterations] expected: FAIL @@ -1199,33 +893,6 @@ [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 1000 iterations] expected: FAIL @@ -1337,38 +1004,92 @@ [long password, long salt, SHA-384, with 100000 iterations with 0 length] expected: FAIL + [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] + expected: FAIL + [pbkdf2.https.any.html?4001-5000] [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 100000 iterations] expected: FAIL @@ -1423,15 +1144,6 @@ [long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 0 iterations] expected: FAIL @@ -1459,33 +1171,6 @@ [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 1 iterations] expected: FAIL @@ -1558,33 +1243,6 @@ [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 1000 iterations] expected: FAIL @@ -1657,33 +1315,6 @@ [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 100000 iterations] expected: FAIL @@ -1738,15 +1369,6 @@ [long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 0 iterations] expected: FAIL @@ -1774,33 +1396,6 @@ [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 1 iterations] expected: FAIL @@ -1873,33 +1468,6 @@ [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 1000 iterations] expected: FAIL @@ -1972,30 +1540,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -2053,15 +1603,6 @@ [long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 0 iterations] expected: FAIL @@ -2089,30 +1630,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -2188,30 +1711,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -2287,30 +1792,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -2368,15 +1855,6 @@ [long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-256, with 0 iterations] expected: FAIL @@ -2404,30 +1882,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -2503,30 +1963,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -2602,30 +2044,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -2716,6 +2140,60 @@ [long password, empty salt, SHA-384, with 100000 iterations with 0 length] expected: FAIL + [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] + expected: FAIL + + [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] + expected: FAIL + [pbkdf2.https.any.html?6001-7000] [Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] @@ -2724,30 +2202,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -2823,30 +2283,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -2922,30 +2364,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -3003,15 +2427,6 @@ [empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 0 iterations] expected: FAIL @@ -3039,30 +2454,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -3138,30 +2535,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -3237,30 +2616,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -3318,15 +2679,6 @@ [empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 0 iterations] expected: FAIL @@ -3354,30 +2706,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -3453,30 +2787,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -3552,30 +2868,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -3633,15 +2931,6 @@ [empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 0 iterations] expected: FAIL @@ -3669,30 +2958,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -3768,30 +3039,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -3867,30 +3120,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -3948,15 +3183,6 @@ [empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 0 iterations] expected: FAIL @@ -3984,30 +3210,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -4103,30 +3311,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -4202,30 +3392,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -4283,15 +3455,6 @@ [short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-384, with 0 iterations] expected: FAIL @@ -4319,30 +3482,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -4418,30 +3563,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -4517,30 +3644,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -4598,15 +3707,6 @@ [short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-512, with 0 iterations] expected: FAIL @@ -4634,30 +3734,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -4733,30 +3815,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -4832,30 +3896,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -4913,15 +3959,6 @@ [short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-1, with 0 iterations] expected: FAIL @@ -4949,30 +3986,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -5048,30 +4067,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -5147,30 +4148,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -5228,15 +4211,6 @@ [short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-256, with 0 iterations] expected: FAIL @@ -5264,30 +4238,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -5363,30 +4319,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -5461,18 +4399,9 @@ [pbkdf2.https.any.worker.html?8001-last] - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -5548,30 +4477,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -5629,15 +4540,6 @@ [empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 0 iterations] expected: FAIL @@ -5665,30 +4567,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -5764,30 +4648,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -5863,30 +4729,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -5944,15 +4792,6 @@ [empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 0 iterations] expected: FAIL @@ -5980,30 +4819,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -6079,30 +4900,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -6178,30 +4981,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -6259,15 +5044,6 @@ [empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 0 iterations] expected: FAIL @@ -6303,30 +5079,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -6384,15 +5142,6 @@ [long password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 0 iterations] expected: FAIL @@ -6420,30 +5169,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -6519,30 +5250,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -6618,30 +5331,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -6699,15 +5394,6 @@ [long password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 0 iterations] expected: FAIL @@ -6735,30 +5421,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -6834,30 +5502,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -6933,30 +5583,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -7014,15 +5646,6 @@ [long password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 0 iterations] expected: FAIL @@ -7050,30 +5673,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -7149,30 +5754,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -7248,30 +5835,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -7329,15 +5898,6 @@ [long password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-256, with 0 iterations] expected: FAIL @@ -7365,30 +5925,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -7464,30 +6006,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -7563,30 +6087,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -7685,30 +6191,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -7784,30 +6272,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -7883,30 +6353,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -7964,15 +6416,6 @@ [empty password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 0 iterations] expected: FAIL @@ -8000,30 +6443,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -8099,30 +6524,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -8198,30 +6605,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -8279,15 +6668,6 @@ [empty password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 0 iterations] expected: FAIL @@ -8315,30 +6695,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -8414,30 +6776,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -8513,30 +6857,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -8594,15 +6920,6 @@ [empty password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 0 iterations] expected: FAIL @@ -8630,30 +6947,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -8729,30 +7028,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -8828,30 +7109,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -8909,15 +7172,6 @@ [empty password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 0 iterations] expected: FAIL @@ -8945,30 +7199,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -9115,30 +7351,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -9214,30 +7432,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -9295,15 +7495,6 @@ [short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-384, with 0 iterations] expected: FAIL @@ -9331,30 +7522,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -9430,30 +7603,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -9529,30 +7684,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -9610,15 +7747,6 @@ [short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-512, with 0 iterations] expected: FAIL @@ -9646,30 +7774,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -9745,30 +7855,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -9844,30 +7936,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -9925,15 +7999,6 @@ [short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-1, with 0 iterations] expected: FAIL @@ -9961,30 +8026,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -10060,30 +8107,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -10159,30 +8188,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -10240,15 +8251,6 @@ [short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-256, with 0 iterations] expected: FAIL @@ -10276,30 +8278,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -10470,30 +8454,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -10569,30 +8535,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -10650,15 +8598,6 @@ [short password, long salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-384, with 0 iterations] expected: FAIL @@ -10686,30 +8625,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -10785,30 +8706,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -10884,30 +8787,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -10965,15 +8850,6 @@ [short password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-512, with 0 iterations] expected: FAIL @@ -11001,30 +8877,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -11100,30 +8958,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -11199,30 +9039,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -11280,15 +9102,6 @@ [short password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-1, with 0 iterations] expected: FAIL @@ -11316,30 +9129,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -11415,30 +9210,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -11514,30 +9291,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -11595,15 +9354,6 @@ [short password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-256, with 0 iterations] expected: FAIL @@ -11631,30 +9381,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -11765,15 +9497,6 @@ [long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-384, with 0 iterations] expected: FAIL @@ -11801,30 +9524,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -11900,30 +9605,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -11999,30 +9686,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -12080,15 +9749,6 @@ [long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-512, with 0 iterations] expected: FAIL @@ -12116,30 +9776,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -12215,30 +9857,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -12314,30 +9938,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -12395,15 +10001,6 @@ [long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-1, with 0 iterations] expected: FAIL @@ -12431,30 +10028,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -12530,30 +10109,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -12629,30 +10190,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -12710,15 +10253,6 @@ [long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-256, with 0 iterations] expected: FAIL @@ -12746,30 +10280,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -12845,30 +10361,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -12944,30 +10442,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -13025,15 +10505,6 @@ [empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 0 iterations] expected: FAIL @@ -13117,30 +10588,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -13216,30 +10669,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -13315,30 +10750,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -13396,15 +10813,6 @@ [short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-384, with 0 iterations] expected: FAIL @@ -13432,30 +10840,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -13531,30 +10921,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -13630,30 +11002,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -13711,15 +11065,6 @@ [short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-512, with 0 iterations] expected: FAIL @@ -13747,30 +11092,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -13846,30 +11173,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -13945,30 +11254,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -14026,15 +11317,6 @@ [short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-1, with 0 iterations] expected: FAIL @@ -14062,30 +11344,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -14161,30 +11425,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -14260,30 +11506,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -14341,15 +11569,6 @@ [short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-256, with 0 iterations] expected: FAIL @@ -14377,30 +11596,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -14484,30 +11685,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -14583,30 +11766,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -14664,15 +11829,6 @@ [empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 0 iterations] expected: FAIL @@ -14700,30 +11856,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -14799,30 +11937,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -14898,30 +12018,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -14979,15 +12081,6 @@ [empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 0 iterations] expected: FAIL @@ -15015,30 +12108,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -15114,30 +12189,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -15213,30 +12270,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -15294,15 +12333,6 @@ [empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 0 iterations] expected: FAIL @@ -15330,30 +12360,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -15429,30 +12441,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -15528,30 +12522,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -15609,15 +12585,6 @@ [empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 0 iterations] expected: FAIL @@ -15645,30 +12612,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -15744,18 +12693,9 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1000 iterations] - expected: FAIL - [empty password, long salt, SHA-512, with 1000 iterations with 0 length] expected: FAIL @@ -15827,30 +12767,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -15926,30 +12848,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -16007,15 +12911,6 @@ [empty password, long salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 0 iterations] expected: FAIL @@ -16043,30 +12938,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -16142,30 +13019,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -16241,30 +13100,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -16322,15 +13163,6 @@ [empty password, long salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 0 iterations] expected: FAIL @@ -16358,30 +13190,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -16457,30 +13271,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -16556,30 +13352,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -16637,15 +13415,6 @@ [empty password, long salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 0 iterations] expected: FAIL @@ -16673,30 +13442,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -16772,30 +13523,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -16871,30 +13604,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -16952,15 +13667,6 @@ [empty password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 0 iterations] expected: FAIL @@ -16988,30 +13694,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -17087,18 +13775,9 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1000 iterations] - expected: FAIL - [empty password, long salt, SHA-512, with 1000 iterations with 0 length] expected: FAIL @@ -17179,30 +13858,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -17260,15 +13921,6 @@ [long password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-384, with 0 iterations] expected: FAIL @@ -17296,30 +13948,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -17395,30 +14029,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -17494,30 +14110,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -17575,15 +14173,6 @@ [long password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 0 iterations] expected: FAIL @@ -17611,30 +14200,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -17710,30 +14281,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -17809,30 +14362,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -17890,15 +14425,6 @@ [long password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 0 iterations] expected: FAIL @@ -17926,30 +14452,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -18025,30 +14533,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -18124,30 +14614,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -18205,15 +14677,6 @@ [long password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 0 iterations] expected: FAIL @@ -18241,30 +14704,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -18340,30 +14785,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -18492,30 +14919,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -18591,30 +15000,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -18672,15 +15063,6 @@ [short password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-384, with 0 iterations] expected: FAIL @@ -18708,30 +15090,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -18807,30 +15171,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -18906,30 +15252,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -18987,15 +15315,6 @@ [short password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-512, with 0 iterations] expected: FAIL @@ -19023,30 +15342,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -19122,30 +15423,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -19221,30 +15504,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -19302,15 +15567,6 @@ [short password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-1, with 0 iterations] expected: FAIL @@ -19338,30 +15594,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -19437,30 +15675,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -19536,30 +15756,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -19617,15 +15819,6 @@ [short password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-256, with 0 iterations] expected: FAIL @@ -19653,30 +15846,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -19752,30 +15927,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -19850,18 +16007,9 @@ [pbkdf2.https.any.html?8001-last] - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -19937,30 +16085,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -20018,15 +16148,6 @@ [empty password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 0 iterations] expected: FAIL @@ -20054,30 +16175,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -20153,30 +16256,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -20252,30 +16337,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -20333,15 +16400,6 @@ [empty password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 0 iterations] expected: FAIL @@ -20369,30 +16427,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -20468,30 +16508,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -20567,30 +16589,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -20648,15 +16652,6 @@ [empty password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 0 iterations] expected: FAIL @@ -20692,15 +16687,6 @@ [long password, empty salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-384, with 0 iterations] expected: FAIL @@ -20728,30 +16714,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -20827,30 +16795,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -20926,30 +16876,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -21007,15 +16939,6 @@ [long password, empty salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-512, with 0 iterations] expected: FAIL @@ -21043,30 +16966,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -21142,30 +17047,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -21241,30 +17128,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -21322,15 +17191,6 @@ [long password, empty salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-1, with 0 iterations] expected: FAIL @@ -21358,30 +17218,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -21457,30 +17299,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -21556,30 +17380,12 @@ [Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -21637,15 +17443,6 @@ [long password, empty salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-256, with 0 iterations] expected: FAIL @@ -21673,30 +17470,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -21772,30 +17551,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -21871,30 +17632,12 @@ [Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -21952,15 +17695,6 @@ [empty password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 0 iterations] expected: FAIL @@ -22044,30 +17778,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -22143,30 +17859,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -22242,30 +17940,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -22323,15 +18003,6 @@ [short password, short salt, SHA-384, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-384, with 0 iterations] expected: FAIL @@ -22359,30 +18030,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -22458,30 +18111,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -22557,30 +18192,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -22638,15 +18255,6 @@ [short password, short salt, SHA-512, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-512, with 0 iterations] expected: FAIL @@ -22674,30 +18282,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -22773,30 +18363,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -22872,30 +18444,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -22953,15 +18507,6 @@ [short password, short salt, SHA-1, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-1, with 0 iterations] expected: FAIL @@ -22989,30 +18534,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1 iterations with wrong (ECDH) key] expected: FAIL @@ -23088,30 +18615,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 1000 iterations with wrong (ECDH) key] expected: FAIL @@ -23187,30 +18696,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 100000 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL @@ -23268,15 +18759,6 @@ [short password, short salt, SHA-256, with 100000 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 0 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 0 iterations] - expected: FAIL - [Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-256, with 0 iterations] expected: FAIL @@ -23304,30 +18786,12 @@ [Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1 iterations] - expected: FAIL - - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1 iterations with missing deriveKey usage] - expected: FAIL - [Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 1 iterations with wrong (ECDH) key] expected: FAIL diff --git a/tests/wpt/meta/WebCryptoAPI/encrypt_decrypt/aes_gcm.https.any.js.ini b/tests/wpt/meta/WebCryptoAPI/encrypt_decrypt/aes_gcm.https.any.js.ini index 046c8dfd02f..f8cf439d2fd 100644 --- a/tests/wpt/meta/WebCryptoAPI/encrypt_decrypt/aes_gcm.https.any.js.ini +++ b/tests/wpt/meta/WebCryptoAPI/encrypt_decrypt/aes_gcm.https.any.js.ini @@ -1,1946 +1,626 @@ [aes_gcm.https.any.html] - [importKey step: AES-GCM 128-bit key, 32-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 32-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 32-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 64-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 64-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 64-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 96-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 96-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 96-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 104-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 104-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 104-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 112-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 112-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 112-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 120-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 120-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 120-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 128-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 128-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 128-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 192-bit key, 32-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 32-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 32-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 64-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 64-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 64-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 96-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 96-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 96-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 104-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 104-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 104-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 112-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 112-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 112-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 120-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 120-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 120-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 128-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 128-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 128-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 32-bit tag, 96-bit iv] + [AES-GCM 128-bit key, 32-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag, 96-bit iv] + [AES-GCM 128-bit key, no additional data, 32-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 64-bit tag, 96-bit iv] + [AES-GCM 128-bit key, 64-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag, 96-bit iv] + [AES-GCM 128-bit key, no additional data, 64-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 96-bit tag, 96-bit iv] + [AES-GCM 128-bit key, 96-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag, 96-bit iv] + [AES-GCM 128-bit key, no additional data, 96-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 104-bit tag, 96-bit iv] + [AES-GCM 128-bit key, 104-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag, 96-bit iv] + [AES-GCM 128-bit key, no additional data, 104-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 112-bit tag, 96-bit iv] + [AES-GCM 128-bit key, 112-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag, 96-bit iv] + [AES-GCM 128-bit key, no additional data, 112-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 120-bit tag, 96-bit iv] + [AES-GCM 128-bit key, 120-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag, 96-bit iv] + [AES-GCM 128-bit key, no additional data, 120-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 128-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 32-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 32-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 32-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, 64-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 64-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 64-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, 96-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 96-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 96-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, 104-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 104-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 104-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, 112-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 112-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 112-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, 120-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 120-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 120-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, 128-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 128-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 128-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, 32-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 32-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 32-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, 64-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 64-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 64-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, 96-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 96-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 96-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, 104-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 104-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 104-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, 112-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 112-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 112-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, 120-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 120-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 120-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, 32-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 32-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 128-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, 64-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 64-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 32-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, 96-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 96-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 64-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, 104-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 104-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 96-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, 112-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 112-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 104-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, 120-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 120-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 112-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, 32-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 32-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 120-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, 64-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 64-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 128-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, 96-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 96-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 32-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 104-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 32-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 104-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 64-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 112-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 64-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 112-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 96-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 120-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 96-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 120-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 104-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 128-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 104-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 128-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 112-bit tag, 96-bit iv] + [AES-GCM 256-bit key, 32-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 112-bit tag, 96-bit iv] + [AES-GCM 256-bit key, no additional data, 32-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 120-bit tag, 96-bit iv] + [AES-GCM 256-bit key, 64-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 120-bit tag, 96-bit iv] + [AES-GCM 256-bit key, no additional data, 64-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 128-bit tag, 96-bit iv] + [AES-GCM 256-bit key, 96-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 128-bit tag, 96-bit iv] + [AES-GCM 256-bit key, no additional data, 96-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, 32-bit tag, 96-bit iv] + [AES-GCM 256-bit key, 104-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 32-bit tag, 96-bit iv] + [AES-GCM 256-bit key, no additional data, 104-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, 64-bit tag, 96-bit iv] + [AES-GCM 256-bit key, 112-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 64-bit tag, 96-bit iv] + [AES-GCM 256-bit key, no additional data, 112-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, 96-bit tag, 96-bit iv] + [AES-GCM 256-bit key, 120-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 96-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 104-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 104-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 112-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 112-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 120-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 120-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 128-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 128-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 32-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 32-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 64-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 64-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 96-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 96-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 104-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 104-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 112-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 112-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 120-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 120-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 128-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 128-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 32-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 32-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 64-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 64-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 96-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 96-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 104-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 104-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 112-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 112-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 120-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 120-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 128-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 128-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 32-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 32-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 64-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 64-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 96-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 96-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 104-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 104-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 112-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 112-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 120-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 120-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 128-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 128-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 32-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 32-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 64-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 64-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 96-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 96-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 104-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 104-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 112-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 112-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 120-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 120-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 128-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 128-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 32-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 64-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 96-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 104-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 112-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 120-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 128-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 32-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 64-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 96-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 104-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 112-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 120-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 128-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 32-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 64-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 96-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 104-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 112-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 120-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 128-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 32-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 64-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 96-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 104-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 112-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 120-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 128-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 32-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 64-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 96-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 104-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 112-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 120-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 128-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 32-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 64-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 96-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 104-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 112-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 120-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 128-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 32-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 64-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 96-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 104-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 112-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 120-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 128-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 32-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 64-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 96-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 104-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 112-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 120-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 128-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 32-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 64-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 96-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 104-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 112-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 120-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 128-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 96-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 96-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 96-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 96-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 96-bit iv, illegal tag length 129-bits] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 96-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 96-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 96-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 96-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 96-bit iv, illegal tag length 129-bits] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 96-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 96-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 96-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 96-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 96-bit iv, illegal tag length 129-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 128-bit key, 96-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 128-bit key, 96-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 128-bit key, 96-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 128-bit key, 96-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 128-bit key, 96-bit iv, illegal tag length 129-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 192-bit key, 96-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 192-bit key, 96-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 192-bit key, 96-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 192-bit key, 96-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 192-bit key, 96-bit iv, illegal tag length 129-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 256-bit key, 96-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 256-bit key, 96-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 256-bit key, 96-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 256-bit key, 96-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 256-bit key, 96-bit iv, illegal tag length 129-bits] + [AES-GCM 256-bit key, no additional data, 120-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL [aes_gcm.https.any.worker.html] - [importKey step: AES-GCM 128-bit key, 32-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 32-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 32-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 64-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 64-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 64-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 96-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 96-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 96-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 104-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 104-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 104-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 112-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 112-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 112-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 120-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 120-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 120-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 128-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 128-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 128-bit tag, 96-bit iv] expected: FAIL - [importKey step: AES-GCM 192-bit key, 32-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 32-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 32-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 64-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 64-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 64-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 96-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 96-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 96-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 104-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 104-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 104-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 112-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 112-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 112-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 120-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 120-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 120-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 128-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 128-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 128-bit tag, 96-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 32-bit tag, 96-bit iv] + [AES-GCM 128-bit key, 32-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag, 96-bit iv] + [AES-GCM 128-bit key, no additional data, 32-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 64-bit tag, 96-bit iv] + [AES-GCM 128-bit key, 64-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag, 96-bit iv] + [AES-GCM 128-bit key, no additional data, 64-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 96-bit tag, 96-bit iv] + [AES-GCM 128-bit key, 96-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag, 96-bit iv] + [AES-GCM 128-bit key, no additional data, 96-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 104-bit tag, 96-bit iv] + [AES-GCM 128-bit key, 104-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag, 96-bit iv] + [AES-GCM 128-bit key, no additional data, 104-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 112-bit tag, 96-bit iv] + [AES-GCM 128-bit key, 112-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag, 96-bit iv] + [AES-GCM 128-bit key, no additional data, 112-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 120-bit tag, 96-bit iv] + [AES-GCM 128-bit key, 120-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag, 96-bit iv] + [AES-GCM 128-bit key, no additional data, 120-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 128-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 32-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 32-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 32-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, 64-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 64-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 64-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, 96-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 96-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 96-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, 104-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 104-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 104-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, 112-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 112-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 112-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, 120-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 120-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 120-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, 128-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 128-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 128-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, 32-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 32-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 32-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, 64-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 64-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 64-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, 96-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 96-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 96-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, 104-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 104-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 104-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, 112-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 112-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 112-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, 120-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 120-bit tag, 96-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 120-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, 32-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 32-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 128-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, 64-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 64-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 32-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, 96-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 96-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 64-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, 104-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 104-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 96-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, 112-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 112-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 104-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, 120-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 120-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 112-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, 32-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 32-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 120-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, 64-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 64-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 128-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, 96-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag, 96-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 96-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 32-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 104-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 32-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 104-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 64-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 112-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 64-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 112-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 96-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 120-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 96-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 120-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 104-bit tag, 96-bit iv] + [AES-GCM 192-bit key, 128-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 104-bit tag, 96-bit iv] + [AES-GCM 192-bit key, no additional data, 128-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 112-bit tag, 96-bit iv] + [AES-GCM 256-bit key, 32-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 112-bit tag, 96-bit iv] + [AES-GCM 256-bit key, no additional data, 32-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 120-bit tag, 96-bit iv] + [AES-GCM 256-bit key, 64-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 120-bit tag, 96-bit iv] + [AES-GCM 256-bit key, no additional data, 64-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 128-bit tag, 96-bit iv] + [AES-GCM 256-bit key, 96-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 128-bit tag, 96-bit iv] + [AES-GCM 256-bit key, no additional data, 96-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, 32-bit tag, 96-bit iv] + [AES-GCM 256-bit key, 104-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 32-bit tag, 96-bit iv] + [AES-GCM 256-bit key, no additional data, 104-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, 64-bit tag, 96-bit iv] + [AES-GCM 256-bit key, 112-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 64-bit tag, 96-bit iv] + [AES-GCM 256-bit key, no additional data, 112-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, 96-bit tag, 96-bit iv] + [AES-GCM 256-bit key, 120-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 96-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 104-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 104-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 112-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 112-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 120-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 120-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 128-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 128-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 32-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 32-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 64-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 64-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 96-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 96-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 104-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 104-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 112-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 112-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 120-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 120-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 128-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 128-bit tag, 96-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 32-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 32-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 64-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 64-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 96-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 96-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 104-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 104-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 112-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 112-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 120-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 120-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 128-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 128-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 32-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 32-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 64-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 64-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 96-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 96-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 104-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 104-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 112-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 112-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 120-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 120-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 128-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 128-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 32-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 32-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 64-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 64-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 96-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 96-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 104-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 104-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 112-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 112-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 120-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 120-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 128-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 128-bit tag, 96-bit iv with altered ciphertext] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 32-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 64-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 96-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 104-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 112-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 120-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 128-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 32-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 64-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 96-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 104-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 112-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 120-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 128-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 32-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 64-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 96-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 104-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 112-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 120-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 128-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag, 96-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 32-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 64-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 96-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 104-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 112-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 120-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 128-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 32-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 64-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 96-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 104-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 112-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 120-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 128-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 32-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 64-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 96-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 104-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 112-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 120-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 128-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag, 96-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 32-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 64-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 96-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 104-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 112-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 120-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 128-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 32-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 64-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 96-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 104-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 112-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 120-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 128-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 32-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 64-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 96-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 104-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 112-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 120-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 128-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag, 96-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 96-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 96-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 96-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 96-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 96-bit iv, illegal tag length 129-bits] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 96-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 96-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 96-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 96-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 96-bit iv, illegal tag length 129-bits] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 96-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 96-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 96-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 96-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 96-bit iv, illegal tag length 129-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 128-bit key, 96-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 128-bit key, 96-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 128-bit key, 96-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 128-bit key, 96-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 128-bit key, 96-bit iv, illegal tag length 129-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 192-bit key, 96-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 192-bit key, 96-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 192-bit key, 96-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 192-bit key, 96-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 192-bit key, 96-bit iv, illegal tag length 129-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 256-bit key, 96-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 256-bit key, 96-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 256-bit key, 96-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 256-bit key, 96-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 256-bit key, 96-bit iv, illegal tag length 129-bits] + [AES-GCM 256-bit key, no additional data, 120-bit tag, 96-bit iv decryption with altered ciphertext] expected: FAIL diff --git a/tests/wpt/meta/WebCryptoAPI/encrypt_decrypt/aes_gcm_256_iv.https.any.js.ini b/tests/wpt/meta/WebCryptoAPI/encrypt_decrypt/aes_gcm_256_iv.https.any.js.ini index 0833bf5ecd1..83bde69e61f 100644 --- a/tests/wpt/meta/WebCryptoAPI/encrypt_decrypt/aes_gcm_256_iv.https.any.js.ini +++ b/tests/wpt/meta/WebCryptoAPI/encrypt_decrypt/aes_gcm_256_iv.https.any.js.ini @@ -1,1946 +1,626 @@ [aes_gcm_256_iv.https.any.worker.html] - [importKey step: AES-GCM 128-bit key, 32-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 32-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 32-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 64-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 64-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 64-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 96-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 96-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 96-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 104-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 104-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 104-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 112-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 112-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 112-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 120-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 120-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 120-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 128-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 128-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 128-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 192-bit key, 32-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 32-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 32-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 64-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 64-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 64-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 96-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 96-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 96-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 104-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 104-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 104-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 112-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 112-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 112-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 120-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 120-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 120-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 128-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 128-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 128-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 32-bit tag, 256-bit iv] + [AES-GCM 128-bit key, 32-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag, 256-bit iv] + [AES-GCM 128-bit key, no additional data, 32-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 64-bit tag, 256-bit iv] + [AES-GCM 128-bit key, 64-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag, 256-bit iv] + [AES-GCM 128-bit key, no additional data, 64-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 96-bit tag, 256-bit iv] + [AES-GCM 128-bit key, 96-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag, 256-bit iv] + [AES-GCM 128-bit key, no additional data, 96-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 104-bit tag, 256-bit iv] + [AES-GCM 128-bit key, 104-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag, 256-bit iv] + [AES-GCM 128-bit key, no additional data, 104-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 112-bit tag, 256-bit iv] + [AES-GCM 128-bit key, 112-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag, 256-bit iv] + [AES-GCM 128-bit key, no additional data, 112-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 120-bit tag, 256-bit iv] + [AES-GCM 128-bit key, 120-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag, 256-bit iv] + [AES-GCM 128-bit key, no additional data, 120-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 128-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 32-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 32-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 32-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, 64-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 64-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 64-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, 96-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 96-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 96-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, 104-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 104-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 104-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, 112-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 112-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 112-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, 120-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 120-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 120-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, 128-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 128-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 128-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, 32-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 32-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 32-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, 64-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 64-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 64-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, 96-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 96-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 96-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, 104-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 104-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 104-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, 112-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 112-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 112-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, 120-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 120-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 120-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, 32-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 32-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 128-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, 64-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 64-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 32-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, 96-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 96-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 64-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, 104-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 104-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 96-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, 112-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 112-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 104-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, 120-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 120-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 112-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, 32-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 32-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 120-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, 64-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 64-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 128-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, 96-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 96-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 32-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 104-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 32-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 104-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 64-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 112-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 64-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 112-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 96-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 120-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 96-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 120-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 104-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 128-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 104-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 128-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 112-bit tag, 256-bit iv] + [AES-GCM 256-bit key, 32-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 112-bit tag, 256-bit iv] + [AES-GCM 256-bit key, no additional data, 32-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 120-bit tag, 256-bit iv] + [AES-GCM 256-bit key, 64-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 120-bit tag, 256-bit iv] + [AES-GCM 256-bit key, no additional data, 64-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 128-bit tag, 256-bit iv] + [AES-GCM 256-bit key, 96-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 128-bit tag, 256-bit iv] + [AES-GCM 256-bit key, no additional data, 96-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, 32-bit tag, 256-bit iv] + [AES-GCM 256-bit key, 104-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 32-bit tag, 256-bit iv] + [AES-GCM 256-bit key, no additional data, 104-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, 64-bit tag, 256-bit iv] + [AES-GCM 256-bit key, 112-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 64-bit tag, 256-bit iv] + [AES-GCM 256-bit key, no additional data, 112-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, 96-bit tag, 256-bit iv] + [AES-GCM 256-bit key, 120-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 96-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 104-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 104-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 112-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 112-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 120-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 120-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 128-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 128-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 32-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 32-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 64-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 64-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 96-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 96-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 104-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 104-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 112-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 112-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 120-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 120-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 128-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 128-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 32-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 32-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 64-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 64-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 96-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 96-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 104-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 104-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 112-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 112-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 120-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 120-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 128-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 128-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 32-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 32-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 64-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 64-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 96-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 96-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 104-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 104-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 112-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 112-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 120-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 120-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 128-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 128-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 32-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 32-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 64-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 64-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 96-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 96-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 104-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 104-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 112-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 112-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 120-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 120-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 128-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 128-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 32-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 64-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 96-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 104-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 112-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 120-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 128-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 32-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 64-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 96-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 104-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 112-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 120-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 128-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 32-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 64-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 96-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 104-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 112-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 120-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 128-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 32-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 64-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 96-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 104-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 112-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 120-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 128-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 32-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 64-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 96-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 104-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 112-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 120-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 128-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 32-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 64-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 96-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 104-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 112-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 120-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 128-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 32-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 64-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 96-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 104-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 112-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 120-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 128-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 32-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 64-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 96-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 104-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 112-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 120-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 128-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 32-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 64-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 96-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 104-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 112-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 120-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 128-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 256-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 256-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 256-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 256-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 256-bit iv, illegal tag length 129-bits] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 256-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 256-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 256-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 256-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 256-bit iv, illegal tag length 129-bits] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 256-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 256-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 256-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 256-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 256-bit iv, illegal tag length 129-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 128-bit key, 256-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 128-bit key, 256-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 128-bit key, 256-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 128-bit key, 256-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 128-bit key, 256-bit iv, illegal tag length 129-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 192-bit key, 256-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 192-bit key, 256-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 192-bit key, 256-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 192-bit key, 256-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 192-bit key, 256-bit iv, illegal tag length 129-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 256-bit key, 256-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 256-bit key, 256-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 256-bit key, 256-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 256-bit key, 256-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 256-bit key, 256-bit iv, illegal tag length 129-bits] + [AES-GCM 256-bit key, no additional data, 120-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL [aes_gcm_256_iv.https.any.html] - [importKey step: AES-GCM 128-bit key, 32-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 32-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 32-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 64-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 64-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 64-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 96-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 96-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 96-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 104-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 104-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 104-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 112-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 112-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 112-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 120-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 120-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 120-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, 128-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 128-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 128-bit tag, 256-bit iv] expected: FAIL - [importKey step: AES-GCM 192-bit key, 32-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 32-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 32-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 64-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 64-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 64-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 96-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 96-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 96-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 104-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 104-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 104-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 112-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 112-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 112-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 120-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 120-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 120-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 128-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 128-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 128-bit tag, 256-bit iv with altered plaintext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 32-bit tag, 256-bit iv] + [AES-GCM 128-bit key, 32-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag, 256-bit iv] + [AES-GCM 128-bit key, no additional data, 32-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 64-bit tag, 256-bit iv] + [AES-GCM 128-bit key, 64-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag, 256-bit iv] + [AES-GCM 128-bit key, no additional data, 64-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 96-bit tag, 256-bit iv] + [AES-GCM 128-bit key, 96-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag, 256-bit iv] + [AES-GCM 128-bit key, no additional data, 96-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 104-bit tag, 256-bit iv] + [AES-GCM 128-bit key, 104-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag, 256-bit iv] + [AES-GCM 128-bit key, no additional data, 104-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 112-bit tag, 256-bit iv] + [AES-GCM 128-bit key, 112-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag, 256-bit iv] + [AES-GCM 128-bit key, no additional data, 112-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 120-bit tag, 256-bit iv] + [AES-GCM 128-bit key, 120-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag, 256-bit iv] + [AES-GCM 128-bit key, no additional data, 120-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, 128-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 32-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 32-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 32-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, 64-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 64-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 64-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, 96-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 96-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 96-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, 104-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 104-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 104-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, 112-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 112-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 112-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, 120-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 120-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 120-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, 128-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 128-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, 128-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, 32-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 32-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 32-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, 64-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 64-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 64-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, 96-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 96-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 96-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, 104-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 104-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 104-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, 112-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 112-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 112-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, 120-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 256-bit key, no additional data, 120-bit tag, 256-bit iv decryption] expected: FAIL - [importKey step: AES-GCM 192-bit key, 120-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, 32-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 32-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 192-bit key, 128-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, 64-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 64-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 32-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, 96-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 96-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 64-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, 104-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 104-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 96-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, 112-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 112-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 104-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, 120-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 128-bit key, no additional data, 120-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 112-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, 32-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 32-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 120-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, 64-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 64-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, 128-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, 96-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag, 256-bit iv with altered plaintext] + [AES-GCM 192-bit key, no additional data, 96-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 32-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 104-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 32-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 104-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 64-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 112-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 64-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 112-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 96-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 120-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 96-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 120-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 104-bit tag, 256-bit iv] + [AES-GCM 192-bit key, 128-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 104-bit tag, 256-bit iv] + [AES-GCM 192-bit key, no additional data, 128-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 112-bit tag, 256-bit iv] + [AES-GCM 256-bit key, 32-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 112-bit tag, 256-bit iv] + [AES-GCM 256-bit key, no additional data, 32-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 120-bit tag, 256-bit iv] + [AES-GCM 256-bit key, 64-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 120-bit tag, 256-bit iv] + [AES-GCM 256-bit key, no additional data, 64-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, 128-bit tag, 256-bit iv] + [AES-GCM 256-bit key, 96-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 128-bit tag, 256-bit iv] + [AES-GCM 256-bit key, no additional data, 96-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, 32-bit tag, 256-bit iv] + [AES-GCM 256-bit key, 104-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 32-bit tag, 256-bit iv] + [AES-GCM 256-bit key, no additional data, 104-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, 64-bit tag, 256-bit iv] + [AES-GCM 256-bit key, 112-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 64-bit tag, 256-bit iv] + [AES-GCM 256-bit key, no additional data, 112-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, 96-bit tag, 256-bit iv] + [AES-GCM 256-bit key, 120-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 96-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 104-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 104-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 112-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 112-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 120-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 120-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 128-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 128-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 32-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 32-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 64-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 64-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 96-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 96-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 104-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 104-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 112-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 112-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 120-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 120-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 128-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 128-bit tag, 256-bit iv] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 32-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 32-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 64-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 64-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 96-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 96-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 104-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 104-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 112-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 112-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 120-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 120-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, 128-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 128-bit key, no additional data, 128-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 32-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 32-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 64-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 64-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 96-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 96-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 104-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 104-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 112-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 112-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 120-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 120-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, 128-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 192-bit key, no additional data, 128-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 32-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 32-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 64-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 64-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 96-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 96-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 104-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 104-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 112-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 112-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 120-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 120-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, 128-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step for decryption: AES-GCM 256-bit key, no additional data, 128-bit tag, 256-bit iv with altered ciphertext] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 32-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 64-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 96-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 104-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 112-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 120-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 128-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 32-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 64-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 96-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 104-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 112-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 120-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 128-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 32-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 64-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 96-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 104-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 112-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 120-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 128-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag, 256-bit iv without encrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 32-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 64-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 96-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 104-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 112-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 120-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 128-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 32-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 64-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 96-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 104-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 112-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 120-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 128-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 32-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 64-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 96-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 104-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 112-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 120-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 128-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag, 256-bit iv with mismatched key and algorithm] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 32-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 32-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 64-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 64-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 96-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 96-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 104-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 104-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 112-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 112-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 120-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 120-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 128-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, no additional data, 128-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 32-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 32-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 64-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 64-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 96-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 96-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 104-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 104-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 112-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 112-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 120-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 120-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 128-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, no additional data, 128-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 32-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 32-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 64-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 64-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 96-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 96-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 104-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 104-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 112-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 112-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 120-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 120-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 128-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, no additional data, 128-bit tag, 256-bit iv without decrypt usage] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 256-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 256-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 256-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 256-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: AES-GCM 128-bit key, 256-bit iv, illegal tag length 129-bits] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 256-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 256-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 256-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 256-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: AES-GCM 192-bit key, 256-bit iv, illegal tag length 129-bits] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 256-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 256-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 256-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 256-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: AES-GCM 256-bit key, 256-bit iv, illegal tag length 129-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 128-bit key, 256-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 128-bit key, 256-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 128-bit key, 256-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 128-bit key, 256-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 128-bit key, 256-bit iv, illegal tag length 129-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 192-bit key, 256-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 192-bit key, 256-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 192-bit key, 256-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 192-bit key, 256-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 192-bit key, 256-bit iv, illegal tag length 129-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 256-bit key, 256-bit iv, illegal tag length 24-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 256-bit key, 256-bit iv, illegal tag length 48-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 256-bit key, 256-bit iv, illegal tag length 72-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 256-bit key, 256-bit iv, illegal tag length 95-bits] - expected: FAIL - - [importKey step: decryption AES-GCM 256-bit key, 256-bit iv, illegal tag length 129-bits] + [AES-GCM 256-bit key, no additional data, 120-bit tag, 256-bit iv decryption with altered ciphertext] expected: FAIL diff --git a/tests/wpt/meta/WebCryptoAPI/generateKey/failures_AES-GCM.https.any.js.ini b/tests/wpt/meta/WebCryptoAPI/generateKey/failures_AES-GCM.https.any.js.ini deleted file mode 100644 index 59665aeddb3..00000000000 --- a/tests/wpt/meta/WebCryptoAPI/generateKey/failures_AES-GCM.https.any.js.ini +++ /dev/null @@ -1,2486 +0,0 @@ -[failures_AES-GCM.https.any.html] - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, deriveBits\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Empty usages: generateKey({length: 128, name: AES-GCM}, false, [\])] - expected: FAIL - - [Empty usages: generateKey({length: 128, name: AES-GCM}, true, [\])] - expected: FAIL - - [Empty usages: generateKey({length: 192, name: AES-GCM}, false, [\])] - expected: FAIL - - [Empty usages: generateKey({length: 192, name: AES-GCM}, true, [\])] - expected: FAIL - - [Empty usages: generateKey({length: 256, name: AES-GCM}, false, [\])] - expected: FAIL - - [Empty usages: generateKey({length: 256, name: AES-GCM}, true, [\])] - expected: FAIL - - -[failures_AES-GCM.https.any.worker.html] - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 128, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 192, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, encrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, decrypt, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, sign\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, encrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, decrypt, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, verify\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, encrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, decrypt, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, deriveKey\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, encrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, decrypt, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, deriveBits\])] - expected: FAIL - - [Bad usages: generateKey({length: 256, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey, deriveBits\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Empty usages: generateKey({length: 128, name: AES-GCM}, false, [\])] - expected: FAIL - - [Empty usages: generateKey({length: 128, name: AES-GCM}, true, [\])] - expected: FAIL - - [Empty usages: generateKey({length: 192, name: AES-GCM}, false, [\])] - expected: FAIL - - [Empty usages: generateKey({length: 192, name: AES-GCM}, true, [\])] - expected: FAIL - - [Empty usages: generateKey({length: 256, name: AES-GCM}, false, [\])] - expected: FAIL - - [Empty usages: generateKey({length: 256, name: AES-GCM}, true, [\])] - expected: FAIL diff --git a/tests/wpt/meta/WebCryptoAPI/generateKey/successes_AES-GCM.https.any.js.ini b/tests/wpt/meta/WebCryptoAPI/generateKey/successes_AES-GCM.https.any.js.ini deleted file mode 100644 index 2620a31ed40..00000000000 --- a/tests/wpt/meta/WebCryptoAPI/generateKey/successes_AES-GCM.https.any.js.ini +++ /dev/null @@ -1,1730 +0,0 @@ -[successes_AES-GCM.https.any.html] - [Success: generateKey({length: 128, name: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - -[successes_AES-GCM.https.any.worker.html] - [Success: generateKey({length: 128, name: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: aes-gcm}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: aes-gcm}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: aes-gcm}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 128, name: Aes-gcm}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 192, name: Aes-gcm}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [unwrapKey, wrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [unwrapKey, decrypt, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [unwrapKey, wrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [unwrapKey, encrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [unwrapKey, wrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [unwrapKey, decrypt\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [unwrapKey, wrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - expected: FAIL - - [Success: generateKey({length: 256, name: Aes-gcm}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey\])] - 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 4c5205c2526..2944168a2b8 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 @@ -1,110 +1,5 @@ [symmetric_importKey.https.any.html] - [Good parameters: 128 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [encrypt\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, true, [encrypt\])] - 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: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, false, [encrypt\])] - 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: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, true, [decrypt, encrypt\])] - 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: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, false, [decrypt, encrypt\])] - 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: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, true, [decrypt\])] - 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: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, false, [decrypt\])] - 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: AES-GCM}, true, [encrypt\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, true, [encrypt\])] - 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: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, false, [encrypt\])] - 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: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, true, [decrypt, encrypt\])] - 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: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, false, [decrypt, encrypt\])] - 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: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, true, [decrypt\])] - 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: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, false, [decrypt\])] - 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: AES-GCM}, true, [encrypt\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, true, [encrypt\])] - 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: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, false, [encrypt\])] - 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: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, true, [decrypt, encrypt\])] - 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: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, false, [decrypt, encrypt\])] - 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: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, true, [decrypt\])] - 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: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, false, [decrypt\])] + [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}, {hash: SHA-1, name: HMAC}, false, [\])] expected: FAIL [Good parameters: 128 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [sign\])] @@ -116,6 +11,15 @@ [Good parameters: 128 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [verify\])] expected: FAIL + [Good parameters: 128 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [sign, verify, sign, verify\])] + expected: FAIL + + [Empty Usages: 128 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [\])] + expected: FAIL + + [Empty Usages: 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}, {hash: SHA-1, name: HMAC}, false, [\])] + expected: FAIL + [Good parameters: 192 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-1, name: HMAC}, false, [sign\])] expected: FAIL @@ -125,6 +29,15 @@ [Good parameters: 192 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-1, name: HMAC}, false, [verify\])] expected: FAIL + [Good parameters: 192 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-1, name: HMAC}, false, [sign, verify, sign, verify\])] + expected: FAIL + + [Empty Usages: 192 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-1, name: HMAC}, false, [\])] + expected: FAIL + + [Empty Usages: 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}, {hash: SHA-1, name: HMAC}, false, [\])] + expected: FAIL + [Good parameters: 256 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [sign\])] expected: FAIL @@ -134,6 +47,15 @@ [Good parameters: 256 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [verify\])] expected: FAIL + [Good parameters: 256 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [sign, verify, sign, verify\])] + expected: FAIL + + [Empty Usages: 256 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [\])] + 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}, {hash: SHA-256, name: HMAC}, false, [\])] + expected: FAIL + [Good parameters: 128 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [sign\])] expected: FAIL @@ -143,6 +65,15 @@ [Good parameters: 128 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [verify\])] expected: FAIL + [Good parameters: 128 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [sign, verify, sign, verify\])] + expected: FAIL + + [Empty Usages: 128 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [\])] + expected: FAIL + + [Empty Usages: 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}, {hash: SHA-256, name: HMAC}, false, [\])] + expected: FAIL + [Good parameters: 192 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-256, name: HMAC}, false, [sign\])] expected: FAIL @@ -152,6 +83,15 @@ [Good parameters: 192 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-256, name: HMAC}, false, [verify\])] expected: FAIL + [Good parameters: 192 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-256, name: HMAC}, false, [sign, verify, sign, verify\])] + expected: FAIL + + [Empty Usages: 192 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-256, name: HMAC}, false, [\])] + expected: FAIL + + [Empty Usages: 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}, {hash: SHA-256, name: HMAC}, false, [\])] + expected: FAIL + [Good parameters: 256 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [sign\])] expected: FAIL @@ -161,6 +101,15 @@ [Good parameters: 256 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [verify\])] expected: FAIL + [Good parameters: 256 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [sign, verify, sign, verify\])] + expected: FAIL + + [Empty Usages: 256 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [\])] + 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}, {hash: SHA-384, name: HMAC}, false, [\])] + expected: FAIL + [Good parameters: 128 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [sign\])] expected: FAIL @@ -170,6 +119,15 @@ [Good parameters: 128 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [verify\])] expected: FAIL + [Good parameters: 128 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [sign, verify, sign, verify\])] + expected: FAIL + + [Empty Usages: 128 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [\])] + expected: FAIL + + [Empty Usages: 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}, {hash: SHA-384, name: HMAC}, false, [\])] + expected: FAIL + [Good parameters: 192 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-384, name: HMAC}, false, [sign\])] expected: FAIL @@ -179,6 +137,15 @@ [Good parameters: 192 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-384, name: HMAC}, false, [verify\])] expected: FAIL + [Good parameters: 192 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-384, name: HMAC}, false, [sign, verify, sign, verify\])] + expected: FAIL + + [Empty Usages: 192 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-384, name: HMAC}, false, [\])] + expected: FAIL + + [Empty Usages: 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}, {hash: SHA-384, name: HMAC}, false, [\])] + expected: FAIL + [Good parameters: 256 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [sign\])] expected: FAIL @@ -188,6 +155,15 @@ [Good parameters: 256 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [verify\])] expected: FAIL + [Good parameters: 256 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [sign, verify, sign, verify\])] + expected: FAIL + + [Empty Usages: 256 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [\])] + 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}, {hash: SHA-512, name: HMAC}, false, [\])] + expected: FAIL + [Good parameters: 128 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [sign\])] expected: FAIL @@ -197,6 +173,15 @@ [Good parameters: 128 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [verify\])] expected: FAIL + [Good parameters: 128 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [sign, verify, sign, verify\])] + expected: FAIL + + [Empty Usages: 128 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [\])] + expected: FAIL + + [Empty Usages: 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}, {hash: SHA-512, name: HMAC}, false, [\])] + expected: FAIL + [Good parameters: 192 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-512, name: HMAC}, false, [sign\])] expected: FAIL @@ -206,6 +191,15 @@ [Good parameters: 192 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-512, name: HMAC}, false, [verify\])] expected: FAIL + [Good parameters: 192 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-512, name: HMAC}, false, [sign, verify, sign, verify\])] + expected: FAIL + + [Empty Usages: 192 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-512, name: HMAC}, false, [\])] + expected: FAIL + + [Empty Usages: 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}, {hash: SHA-512, name: HMAC}, false, [\])] + expected: FAIL + [Good parameters: 256 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [sign\])] expected: FAIL @@ -215,109 +209,7 @@ [Good parameters: 256 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [verify\])] 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 - - [Empty Usages: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, true, [\])] - 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}, false, [\])] - expected: FAIL - - [Empty Usages: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, false, [\])] - expected: FAIL - - [Empty Usages: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [\])] - expected: FAIL - - [Empty Usages: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, true, [\])] - expected: FAIL - - [Empty Usages: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, false, [\])] - expected: FAIL - - [Empty Usages: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, false, [\])] - expected: FAIL - - [Empty Usages: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [\])] - expected: FAIL - - [Empty Usages: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, true, [\])] - expected: FAIL - - [Empty Usages: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, false, [\])] - expected: FAIL - - [Empty Usages: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, false, [\])] - 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}, {hash: SHA-1, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 128 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 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}, {hash: SHA-1, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 192 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-1, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 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}, {hash: SHA-1, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 256 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [\])] - 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}, {hash: SHA-256, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 128 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 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}, {hash: SHA-256, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 192 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-256, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 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}, {hash: SHA-256, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 256 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [\])] - 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}, {hash: SHA-384, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 128 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 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}, {hash: SHA-384, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 192 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-384, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 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}, {hash: SHA-384, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 256 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [\])] - 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}, {hash: SHA-512, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 128 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 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}, {hash: SHA-512, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 192 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-512, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 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}, {hash: SHA-512, name: HMAC}, false, [\])] + [Good parameters: 256 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [sign, verify, sign, verify\])] expected: FAIL [Empty Usages: 256 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [\])] @@ -341,186 +233,9 @@ [Empty Usages: 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: PBKDF2}, false, [\])] 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: AES-GCM}, true, [encrypt, decrypt, encrypt, decrypt\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, true, [encrypt, decrypt, encrypt, decrypt\])] - 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: AES-GCM}, false, [encrypt, decrypt, encrypt, decrypt\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, false, [encrypt, decrypt, encrypt, decrypt\])] - 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: AES-GCM}, true, [encrypt, decrypt, encrypt, decrypt\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, true, [encrypt, decrypt, encrypt, decrypt\])] - 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: AES-GCM}, false, [encrypt, decrypt, encrypt, decrypt\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, false, [encrypt, decrypt, encrypt, decrypt\])] - 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: AES-GCM}, true, [encrypt, decrypt, encrypt, decrypt\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, true, [encrypt, decrypt, encrypt, decrypt\])] - 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: AES-GCM}, false, [encrypt, decrypt, encrypt, decrypt\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, false, [encrypt, decrypt, encrypt, decrypt\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [sign, verify, sign, verify\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-1, name: HMAC}, false, [sign, verify, sign, verify\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [sign, verify, sign, verify\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [sign, verify, sign, verify\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-256, name: HMAC}, false, [sign, verify, sign, verify\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [sign, verify, sign, verify\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [sign, verify, sign, verify\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-384, name: HMAC}, false, [sign, verify, sign, verify\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [sign, verify, sign, verify\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [sign, verify, sign, verify\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-512, name: HMAC}, false, [sign, verify, sign, verify\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [sign, verify, sign, verify\])] - 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\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, true, [encrypt\])] - 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: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, false, [encrypt\])] - 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: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, true, [decrypt, encrypt\])] - 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: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, false, [decrypt, encrypt\])] - 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: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, true, [decrypt\])] - 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: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, false, [decrypt\])] - 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: AES-GCM}, true, [encrypt\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, true, [encrypt\])] - 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: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, false, [encrypt\])] - 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: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, true, [decrypt, encrypt\])] - 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: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, false, [decrypt, encrypt\])] - 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: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, true, [decrypt\])] - 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: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, false, [decrypt\])] - 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: AES-GCM}, true, [encrypt\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, true, [encrypt\])] - 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: AES-GCM}, false, [encrypt\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, false, [encrypt\])] - 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: AES-GCM}, true, [decrypt, encrypt\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, true, [decrypt, encrypt\])] - 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: AES-GCM}, false, [decrypt, encrypt\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, false, [decrypt, encrypt\])] - 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: AES-GCM}, true, [decrypt\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, true, [decrypt\])] - 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: AES-GCM}, false, [decrypt\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, false, [decrypt\])] + [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}, {hash: SHA-1, name: HMAC}, false, [\])] expected: FAIL [Good parameters: 128 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [sign\])] @@ -532,6 +247,15 @@ [Good parameters: 128 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [verify\])] expected: FAIL + [Good parameters: 128 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [sign, verify, sign, verify\])] + expected: FAIL + + [Empty Usages: 128 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [\])] + expected: FAIL + + [Empty Usages: 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}, {hash: SHA-1, name: HMAC}, false, [\])] + expected: FAIL + [Good parameters: 192 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-1, name: HMAC}, false, [sign\])] expected: FAIL @@ -541,6 +265,15 @@ [Good parameters: 192 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-1, name: HMAC}, false, [verify\])] expected: FAIL + [Good parameters: 192 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-1, name: HMAC}, false, [sign, verify, sign, verify\])] + expected: FAIL + + [Empty Usages: 192 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-1, name: HMAC}, false, [\])] + expected: FAIL + + [Empty Usages: 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}, {hash: SHA-1, name: HMAC}, false, [\])] + expected: FAIL + [Good parameters: 256 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [sign\])] expected: FAIL @@ -550,6 +283,15 @@ [Good parameters: 256 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [verify\])] expected: FAIL + [Good parameters: 256 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [sign, verify, sign, verify\])] + expected: FAIL + + [Empty Usages: 256 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [\])] + 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}, {hash: SHA-256, name: HMAC}, false, [\])] + expected: FAIL + [Good parameters: 128 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [sign\])] expected: FAIL @@ -559,6 +301,15 @@ [Good parameters: 128 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [verify\])] expected: FAIL + [Good parameters: 128 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [sign, verify, sign, verify\])] + expected: FAIL + + [Empty Usages: 128 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [\])] + expected: FAIL + + [Empty Usages: 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}, {hash: SHA-256, name: HMAC}, false, [\])] + expected: FAIL + [Good parameters: 192 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-256, name: HMAC}, false, [sign\])] expected: FAIL @@ -568,6 +319,15 @@ [Good parameters: 192 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-256, name: HMAC}, false, [verify\])] expected: FAIL + [Good parameters: 192 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-256, name: HMAC}, false, [sign, verify, sign, verify\])] + expected: FAIL + + [Empty Usages: 192 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-256, name: HMAC}, false, [\])] + expected: FAIL + + [Empty Usages: 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}, {hash: SHA-256, name: HMAC}, false, [\])] + expected: FAIL + [Good parameters: 256 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [sign\])] expected: FAIL @@ -577,6 +337,15 @@ [Good parameters: 256 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [verify\])] expected: FAIL + [Good parameters: 256 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [sign, verify, sign, verify\])] + expected: FAIL + + [Empty Usages: 256 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [\])] + 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}, {hash: SHA-384, name: HMAC}, false, [\])] + expected: FAIL + [Good parameters: 128 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [sign\])] expected: FAIL @@ -586,6 +355,15 @@ [Good parameters: 128 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [verify\])] expected: FAIL + [Good parameters: 128 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [sign, verify, sign, verify\])] + expected: FAIL + + [Empty Usages: 128 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [\])] + expected: FAIL + + [Empty Usages: 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}, {hash: SHA-384, name: HMAC}, false, [\])] + expected: FAIL + [Good parameters: 192 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-384, name: HMAC}, false, [sign\])] expected: FAIL @@ -595,6 +373,15 @@ [Good parameters: 192 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-384, name: HMAC}, false, [verify\])] expected: FAIL + [Good parameters: 192 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-384, name: HMAC}, false, [sign, verify, sign, verify\])] + expected: FAIL + + [Empty Usages: 192 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-384, name: HMAC}, false, [\])] + expected: FAIL + + [Empty Usages: 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}, {hash: SHA-384, name: HMAC}, false, [\])] + expected: FAIL + [Good parameters: 256 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [sign\])] expected: FAIL @@ -604,6 +391,15 @@ [Good parameters: 256 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [verify\])] expected: FAIL + [Good parameters: 256 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [sign, verify, sign, verify\])] + expected: FAIL + + [Empty Usages: 256 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [\])] + 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}, {hash: SHA-512, name: HMAC}, false, [\])] + expected: FAIL + [Good parameters: 128 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [sign\])] expected: FAIL @@ -613,6 +409,15 @@ [Good parameters: 128 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [verify\])] expected: FAIL + [Good parameters: 128 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [sign, verify, sign, verify\])] + expected: FAIL + + [Empty Usages: 128 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [\])] + expected: FAIL + + [Empty Usages: 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}, {hash: SHA-512, name: HMAC}, false, [\])] + expected: FAIL + [Good parameters: 192 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-512, name: HMAC}, false, [sign\])] expected: FAIL @@ -622,6 +427,15 @@ [Good parameters: 192 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-512, name: HMAC}, false, [verify\])] expected: FAIL + [Good parameters: 192 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-512, name: HMAC}, false, [sign, verify, sign, verify\])] + expected: FAIL + + [Empty Usages: 192 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-512, name: HMAC}, false, [\])] + expected: FAIL + + [Empty Usages: 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}, {hash: SHA-512, name: HMAC}, false, [\])] + expected: FAIL + [Good parameters: 256 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [sign\])] expected: FAIL @@ -631,109 +445,7 @@ [Good parameters: 256 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [verify\])] 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 - - [Empty Usages: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, true, [\])] - 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}, false, [\])] - expected: FAIL - - [Empty Usages: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, false, [\])] - expected: FAIL - - [Empty Usages: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [\])] - expected: FAIL - - [Empty Usages: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, true, [\])] - expected: FAIL - - [Empty Usages: 192 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 3: 4, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, false, [\])] - expected: FAIL - - [Empty Usages: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, false, [\])] - expected: FAIL - - [Empty Usages: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, true, [\])] - expected: FAIL - - [Empty Usages: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, true, [\])] - expected: FAIL - - [Empty Usages: 256 bits (raw, {0: 1, 1: 2, 10: 11, 11: 12, 12: 13, 13: 14, 14: 15, 15: 16, 16: 17, 17: 18, 18: 19, 19: 20, 2: 3, 20: 21, 21: 22, 22: 23, 23: 24, 24: 25, 25: 26, 26: 27, 27: 28, 28: 29, 29: 30, 3: 4, 30: 31, 31: 32, 4: 5, 5: 6, 6: 7, 7: 8, 8: 9, 9: 10}, {name: AES-GCM}, false, [\])] - expected: FAIL - - [Empty Usages: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, false, [\])] - 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}, {hash: SHA-1, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 128 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 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}, {hash: SHA-1, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 192 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-1, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 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}, {hash: SHA-1, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 256 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [\])] - 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}, {hash: SHA-256, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 128 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 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}, {hash: SHA-256, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 192 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-256, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 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}, {hash: SHA-256, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 256 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [\])] - 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}, {hash: SHA-384, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 128 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 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}, {hash: SHA-384, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 192 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-384, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 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}, {hash: SHA-384, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 256 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [\])] - 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}, {hash: SHA-512, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 128 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 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}, {hash: SHA-512, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 192 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-512, name: HMAC}, false, [\])] - expected: FAIL - - [Empty Usages: 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}, {hash: SHA-512, name: HMAC}, false, [\])] + [Good parameters: 256 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [sign, verify, sign, verify\])] expected: FAIL [Empty Usages: 256 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [\])] @@ -756,75 +468,3 @@ [Empty Usages: 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: PBKDF2}, false, [\])] 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: AES-GCM}, true, [encrypt, decrypt, encrypt, decrypt\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, true, [encrypt, decrypt, encrypt, decrypt\])] - 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: AES-GCM}, false, [encrypt, decrypt, encrypt, decrypt\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: A128GCM, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {name: AES-GCM}, false, [encrypt, decrypt, encrypt, decrypt\])] - 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: AES-GCM}, true, [encrypt, decrypt, encrypt, decrypt\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, true, [encrypt, decrypt, encrypt, decrypt\])] - 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: AES-GCM}, false, [encrypt, decrypt, encrypt, decrypt\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: A192GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {name: AES-GCM}, false, [encrypt, decrypt, encrypt, decrypt\])] - 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: AES-GCM}, true, [encrypt, decrypt, encrypt, decrypt\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, true, [encrypt, decrypt, encrypt, decrypt\])] - 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: AES-GCM}, false, [encrypt, decrypt, encrypt, decrypt\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: A256GCM, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {name: AES-GCM}, false, [encrypt, decrypt, encrypt, decrypt\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [sign, verify, sign, verify\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-1, name: HMAC}, false, [sign, verify, sign, verify\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: HS1, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-1, name: HMAC}, false, [sign, verify, sign, verify\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [sign, verify, sign, verify\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-256, name: HMAC}, false, [sign, verify, sign, verify\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: HS256, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-256, name: HMAC}, false, [sign, verify, sign, verify\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [sign, verify, sign, verify\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-384, name: HMAC}, false, [sign, verify, sign, verify\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: HS384, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-384, name: HMAC}, false, [sign, verify, sign, verify\])] - expected: FAIL - - [Good parameters: 128 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [sign, verify, sign, verify\])] - expected: FAIL - - [Good parameters: 192 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcY, kty: oct}, {hash: SHA-512, name: HMAC}, false, [sign, verify, sign, verify\])] - expected: FAIL - - [Good parameters: 256 bits (jwk, {alg: HS512, k: AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA, kty: oct}, {hash: SHA-512, name: HMAC}, false, [sign, verify, sign, verify\])] - expected: FAIL