| Index: LayoutTests/crypto/clone-rsaKey-private.html
|
| diff --git a/LayoutTests/crypto/clone-rsaKey-private.html b/LayoutTests/crypto/clone-rsaKey-private.html
|
| deleted file mode 100644
|
| index 98e8e6b0ccc9e3af59caf5b71b9182176a5c9cb4..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/crypto/clone-rsaKey-private.html
|
| +++ /dev/null
|
| @@ -1,97 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| -<head>
|
| -<script src="../resources/js-test.js"></script>
|
| -<script src="resources/common.js"></script>
|
| -<script src="resources/keys.js"></script>
|
| -</head>
|
| -<body>
|
| -<p id="description"></p>
|
| -<div id="console"></div>
|
| -
|
| -<script>
|
| -description("Tests structured cloning of RSA private keys (without a hash)");
|
| -
|
| -jsTestIsAsync = true;
|
| -
|
| -// Tests the 16 permutations of keys generated by:
|
| -// kPossibleAlgorithms x kPossibleExtractable x kPossibleKeyUsages x kPossibleKeyData
|
| -//
|
| -// For practical reasons these tests are not exhaustive.
|
| -
|
| -var kPossibleAlgorithms = ['RSAES-PKCS1-v1_5'];
|
| -var kPossibleExtractable = [true, false];
|
| -var kPossibleKeyUsages = [[], ['encrypt'], ['decrypt', 'wrapKey'], ['encrypt', 'wrapKey', 'unwrapKey']];
|
| -
|
| -var kPossibleKeyData = [
|
| - kKeyData.rsa1,
|
| - kKeyData.rsa4
|
| -];
|
| -
|
| -function runTest(algorithmName, extractable, keyUsages, keyData)
|
| -{
|
| - var importData = hexStringToUint8Array(keyData.pkcs8);
|
| - var importAlgorithm = { name: algorithmName };
|
| -
|
| - var results = {};
|
| -
|
| - return crypto.subtle.importKey('pkcs8', importData, importAlgorithm, extractable, keyUsages).then(function(importedKey) {
|
| - results.importedKey = importedKey;
|
| - importedKey.extraProperty = 'hi';
|
| - return cloneKey(importedKey);
|
| - }).then(function(clonedKey) {
|
| - results.clonedKey = clonedKey;
|
| - if (extractable)
|
| - return crypto.subtle.exportKey('pkcs8', clonedKey);
|
| - return null;
|
| - }).then(function(clonedKeyData) {
|
| - importedKey = results.importedKey;
|
| - clonedKey = results.clonedKey;
|
| -
|
| - shouldEvaluateAs("importedKey.extraProperty", "hi");
|
| - shouldEvaluateAs("importedKey.type", "private");
|
| - shouldEvaluateAs("importedKey.extractable", extractable);
|
| - shouldEvaluateAs("importedKey.algorithm.name", algorithmName);
|
| - shouldEvaluateAs("importedKey.algorithm.modulusLength", keyData.modulusLengthBits);
|
| - bytesShouldMatchHexString("importedKey.algorithm.publicExponent", keyData.publicExponent, importedKey.algorithm.publicExponent);
|
| - shouldBeUndefined("importedKey.algorithm.hash");
|
| - shouldEvaluateAs("importedKey.usages.join(',')", keyUsages.join(","));
|
| -
|
| - shouldNotBe("importedKey", "clonedKey");
|
| -
|
| - shouldBeUndefined("clonedKey.extraProperty");
|
| - shouldEvaluateAs("clonedKey.type", "private");
|
| - shouldEvaluateAs("clonedKey.extractable", extractable);
|
| - shouldEvaluateAs("clonedKey.algorithm.name", algorithmName);
|
| - shouldEvaluateAs("clonedKey.algorithm.modulusLength", keyData.modulusLengthBits);
|
| - bytesShouldMatchHexString("clonedKey.algorithm.publicExponent", keyData.publicExponent, clonedKey.algorithm.publicExponent);
|
| - shouldBeUndefined("clonedKey.algorithm.hash");
|
| - shouldEvaluateAs("clonedKey.usages.join(',')", keyUsages.join(","));
|
| -
|
| - logSerializedKey(importedKey);
|
| -
|
| - if (extractable)
|
| - bytesShouldMatchHexString("Cloned key exported data", keyData.pkcs8, clonedKeyData);
|
| -
|
| - debug("");
|
| - });
|
| -}
|
| -
|
| -var lastPromise = Promise.resolve(null);
|
| -
|
| -kPossibleAlgorithms.forEach(function(algorithmName) {
|
| - kPossibleExtractable.forEach(function(extractable) {
|
| - kPossibleKeyUsages.forEach(function(keyUsages) {
|
| - kPossibleKeyData.forEach(function(keyData) {
|
| - lastPromise = lastPromise.then(runTest.bind(null, algorithmName, extractable, keyUsages, keyData));
|
| - });
|
| - });
|
| - });
|
| -});
|
| -
|
| -lastPromise.then(finishJSTest, failAndFinishJSTest);
|
| -
|
| -</script>
|
| -
|
| -</body>
|
| -</html>
|
|
|