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

Unified Diff: LayoutTests/crypto/clone-hmacKey-expected.txt

Issue 195543002: [webcrypto] Implement structured clone of keys (blink-side). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update serialized-script-value.html for version bump Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/crypto/clone-hmacKey.html ('k') | LayoutTests/crypto/clone-rsaHashedKey-public.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/crypto/clone-hmacKey-expected.txt
diff --git a/LayoutTests/crypto/clone-hmacKey-expected.txt b/LayoutTests/crypto/clone-hmacKey-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e6d0b0f3f6d12e150f06412bde8795d1c3ef3974
--- /dev/null
+++ b/LayoutTests/crypto/clone-hmacKey-expected.txt
@@ -0,0 +1,945 @@
+Tests structured cloning of HMAC keys
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-1"
+PASS importedKey.usages.join(',') is ""
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-1"
+PASS clonedKey.usages.join(',') is ""
+Serialized key bytes: ff053f004b021005011030112233445566778899aabbccddeeff
+PASS: Cloned key exported data should be [30112233445566778899aabbccddeeff] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-1"
+PASS importedKey.usages.join(',') is ""
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-1"
+PASS clonedKey.usages.join(',') is ""
+Serialized key bytes: ff053f004b022005012000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+PASS: Cloned key exported data should be [00112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-1"
+PASS importedKey.usages.join(',') is "sign"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-1"
+PASS clonedKey.usages.join(',') is "sign"
+Serialized key bytes: ff053f004b021005091030112233445566778899aabbccddeeff
+PASS: Cloned key exported data should be [30112233445566778899aabbccddeeff] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-1"
+PASS importedKey.usages.join(',') is "sign"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-1"
+PASS clonedKey.usages.join(',') is "sign"
+Serialized key bytes: ff053f004b022005092000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+PASS: Cloned key exported data should be [00112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-1"
+PASS importedKey.usages.join(',') is "verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-1"
+PASS clonedKey.usages.join(',') is "verify"
+Serialized key bytes: ff053f004b021005111030112233445566778899aabbccddeeff
+PASS: Cloned key exported data should be [30112233445566778899aabbccddeeff] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-1"
+PASS importedKey.usages.join(',') is "verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-1"
+PASS clonedKey.usages.join(',') is "verify"
+Serialized key bytes: ff053f004b022005112000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+PASS: Cloned key exported data should be [00112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-1"
+PASS importedKey.usages.join(',') is "sign,verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-1"
+PASS clonedKey.usages.join(',') is "sign,verify"
+Serialized key bytes: ff053f004b021005191030112233445566778899aabbccddeeff
+PASS: Cloned key exported data should be [30112233445566778899aabbccddeeff] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-1"
+PASS importedKey.usages.join(',') is "sign,verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-1"
+PASS clonedKey.usages.join(',') is "sign,verify"
+Serialized key bytes: ff053f004b022005192000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+PASS: Cloned key exported data should be [00112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-1"
+PASS importedKey.usages.join(',') is ""
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-1"
+PASS clonedKey.usages.join(',') is ""
+Serialized key bytes: ff053f004b021005001030112233445566778899aabbccddeeff
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-1"
+PASS importedKey.usages.join(',') is ""
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-1"
+PASS clonedKey.usages.join(',') is ""
+Serialized key bytes: ff053f004b022005002000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-1"
+PASS importedKey.usages.join(',') is "sign"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-1"
+PASS clonedKey.usages.join(',') is "sign"
+Serialized key bytes: ff053f004b021005081030112233445566778899aabbccddeeff
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-1"
+PASS importedKey.usages.join(',') is "sign"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-1"
+PASS clonedKey.usages.join(',') is "sign"
+Serialized key bytes: ff053f004b022005082000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-1"
+PASS importedKey.usages.join(',') is "verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-1"
+PASS clonedKey.usages.join(',') is "verify"
+Serialized key bytes: ff053f004b021005101030112233445566778899aabbccddeeff
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-1"
+PASS importedKey.usages.join(',') is "verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-1"
+PASS clonedKey.usages.join(',') is "verify"
+Serialized key bytes: ff053f004b022005102000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-1"
+PASS importedKey.usages.join(',') is "sign,verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-1"
+PASS clonedKey.usages.join(',') is "sign,verify"
+Serialized key bytes: ff053f004b021005181030112233445566778899aabbccddeeff
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-1"
+PASS importedKey.usages.join(',') is "sign,verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-1"
+PASS clonedKey.usages.join(',') is "sign,verify"
+Serialized key bytes: ff053f004b022005182000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-256"
+PASS importedKey.usages.join(',') is ""
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-256"
+PASS clonedKey.usages.join(',') is ""
+Serialized key bytes: ff053f004b021006011030112233445566778899aabbccddeeff
+PASS: Cloned key exported data should be [30112233445566778899aabbccddeeff] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-256"
+PASS importedKey.usages.join(',') is ""
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-256"
+PASS clonedKey.usages.join(',') is ""
+Serialized key bytes: ff053f004b022006012000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+PASS: Cloned key exported data should be [00112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-256"
+PASS importedKey.usages.join(',') is "sign"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-256"
+PASS clonedKey.usages.join(',') is "sign"
+Serialized key bytes: ff053f004b021006091030112233445566778899aabbccddeeff
+PASS: Cloned key exported data should be [30112233445566778899aabbccddeeff] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-256"
+PASS importedKey.usages.join(',') is "sign"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-256"
+PASS clonedKey.usages.join(',') is "sign"
+Serialized key bytes: ff053f004b022006092000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+PASS: Cloned key exported data should be [00112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-256"
+PASS importedKey.usages.join(',') is "verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-256"
+PASS clonedKey.usages.join(',') is "verify"
+Serialized key bytes: ff053f004b021006111030112233445566778899aabbccddeeff
+PASS: Cloned key exported data should be [30112233445566778899aabbccddeeff] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-256"
+PASS importedKey.usages.join(',') is "verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-256"
+PASS clonedKey.usages.join(',') is "verify"
+Serialized key bytes: ff053f004b022006112000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+PASS: Cloned key exported data should be [00112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-256"
+PASS importedKey.usages.join(',') is "sign,verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-256"
+PASS clonedKey.usages.join(',') is "sign,verify"
+Serialized key bytes: ff053f004b021006191030112233445566778899aabbccddeeff
+PASS: Cloned key exported data should be [30112233445566778899aabbccddeeff] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-256"
+PASS importedKey.usages.join(',') is "sign,verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-256"
+PASS clonedKey.usages.join(',') is "sign,verify"
+Serialized key bytes: ff053f004b022006192000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+PASS: Cloned key exported data should be [00112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-256"
+PASS importedKey.usages.join(',') is ""
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-256"
+PASS clonedKey.usages.join(',') is ""
+Serialized key bytes: ff053f004b021006001030112233445566778899aabbccddeeff
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-256"
+PASS importedKey.usages.join(',') is ""
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-256"
+PASS clonedKey.usages.join(',') is ""
+Serialized key bytes: ff053f004b022006002000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-256"
+PASS importedKey.usages.join(',') is "sign"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-256"
+PASS clonedKey.usages.join(',') is "sign"
+Serialized key bytes: ff053f004b021006081030112233445566778899aabbccddeeff
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-256"
+PASS importedKey.usages.join(',') is "sign"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-256"
+PASS clonedKey.usages.join(',') is "sign"
+Serialized key bytes: ff053f004b022006082000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-256"
+PASS importedKey.usages.join(',') is "verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-256"
+PASS clonedKey.usages.join(',') is "verify"
+Serialized key bytes: ff053f004b021006101030112233445566778899aabbccddeeff
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-256"
+PASS importedKey.usages.join(',') is "verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-256"
+PASS clonedKey.usages.join(',') is "verify"
+Serialized key bytes: ff053f004b022006102000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-256"
+PASS importedKey.usages.join(',') is "sign,verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-256"
+PASS clonedKey.usages.join(',') is "sign,verify"
+Serialized key bytes: ff053f004b021006181030112233445566778899aabbccddeeff
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-256"
+PASS importedKey.usages.join(',') is "sign,verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-256"
+PASS clonedKey.usages.join(',') is "sign,verify"
+Serialized key bytes: ff053f004b022006182000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-512"
+PASS importedKey.usages.join(',') is ""
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-512"
+PASS clonedKey.usages.join(',') is ""
+Serialized key bytes: ff053f004b021008011030112233445566778899aabbccddeeff
+PASS: Cloned key exported data should be [30112233445566778899aabbccddeeff] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-512"
+PASS importedKey.usages.join(',') is ""
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-512"
+PASS clonedKey.usages.join(',') is ""
+Serialized key bytes: ff053f004b022008012000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+PASS: Cloned key exported data should be [00112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-512"
+PASS importedKey.usages.join(',') is "sign"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-512"
+PASS clonedKey.usages.join(',') is "sign"
+Serialized key bytes: ff053f004b021008091030112233445566778899aabbccddeeff
+PASS: Cloned key exported data should be [30112233445566778899aabbccddeeff] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-512"
+PASS importedKey.usages.join(',') is "sign"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-512"
+PASS clonedKey.usages.join(',') is "sign"
+Serialized key bytes: ff053f004b022008092000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+PASS: Cloned key exported data should be [00112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-512"
+PASS importedKey.usages.join(',') is "verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-512"
+PASS clonedKey.usages.join(',') is "verify"
+Serialized key bytes: ff053f004b021008111030112233445566778899aabbccddeeff
+PASS: Cloned key exported data should be [30112233445566778899aabbccddeeff] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-512"
+PASS importedKey.usages.join(',') is "verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-512"
+PASS clonedKey.usages.join(',') is "verify"
+Serialized key bytes: ff053f004b022008112000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+PASS: Cloned key exported data should be [00112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-512"
+PASS importedKey.usages.join(',') is "sign,verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-512"
+PASS clonedKey.usages.join(',') is "sign,verify"
+Serialized key bytes: ff053f004b021008191030112233445566778899aabbccddeeff
+PASS: Cloned key exported data should be [30112233445566778899aabbccddeeff] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is true
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-512"
+PASS importedKey.usages.join(',') is "sign,verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is true
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-512"
+PASS clonedKey.usages.join(',') is "sign,verify"
+Serialized key bytes: ff053f004b022008192000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+PASS: Cloned key exported data should be [00112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f] and was
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-512"
+PASS importedKey.usages.join(',') is ""
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-512"
+PASS clonedKey.usages.join(',') is ""
+Serialized key bytes: ff053f004b021008001030112233445566778899aabbccddeeff
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-512"
+PASS importedKey.usages.join(',') is ""
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-512"
+PASS clonedKey.usages.join(',') is ""
+Serialized key bytes: ff053f004b022008002000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-512"
+PASS importedKey.usages.join(',') is "sign"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-512"
+PASS clonedKey.usages.join(',') is "sign"
+Serialized key bytes: ff053f004b021008081030112233445566778899aabbccddeeff
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-512"
+PASS importedKey.usages.join(',') is "sign"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-512"
+PASS clonedKey.usages.join(',') is "sign"
+Serialized key bytes: ff053f004b022008082000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-512"
+PASS importedKey.usages.join(',') is "verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-512"
+PASS clonedKey.usages.join(',') is "verify"
+Serialized key bytes: ff053f004b021008101030112233445566778899aabbccddeeff
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-512"
+PASS importedKey.usages.join(',') is "verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-512"
+PASS clonedKey.usages.join(',') is "verify"
+Serialized key bytes: ff053f004b022008102000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 128
+PASS importedKey.algorithm.hash.name is "SHA-512"
+PASS importedKey.usages.join(',') is "sign,verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 128
+PASS clonedKey.algorithm.hash.name is "SHA-512"
+PASS clonedKey.usages.join(',') is "sign,verify"
+Serialized key bytes: ff053f004b021008181030112233445566778899aabbccddeeff
+
+PASS importedKey.extraProperty is "hi"
+PASS importedKey.type is "secret"
+PASS typeof importedKey.extractable is 'boolean'
+PASS importedKey.extractable is false
+PASS importedKey.algorithm.name is "HMAC"
+PASS importedKey.algorithm.length is 256
+PASS importedKey.algorithm.hash.name is "SHA-512"
+PASS importedKey.usages.join(',') is "sign,verify"
+PASS importedKey != clonedKey is true
+PASS clonedKey.extraProperty is undefined.
+PASS clonedKey.type is "secret"
+PASS typeof clonedKey.extractable is 'boolean'
+PASS clonedKey.extractable is false
+PASS clonedKey.algorithm.name is "HMAC"
+PASS clonedKey.algorithm.length is 256
+PASS clonedKey.algorithm.hash.name is "SHA-512"
+PASS clonedKey.usages.join(',') is "sign,verify"
+Serialized key bytes: ff053f004b022008182000112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f
+
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
« no previous file with comments | « LayoutTests/crypto/clone-hmacKey.html ('k') | LayoutTests/crypto/clone-rsaHashedKey-public.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698