blob: aeeb17fb5c3fc711f59ed61783a5b76f38abe102 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../../resources/js-test-pre.js"></script>
<script src="../resources/common.js"></script>
</head>
<body>
<p id="description"></p>
<div id="console"></div>
<script>
description("Test exporting a P-384 ECDH key pair with JWK format.");
jsTestIsAsync = true;
var algorithmKeyGen = {
name: "ECDH",
namedCurve: "P-384"
};
var extractable = true;
var keyPair;
debug("Generating a key pair...");
crypto.subtle.generateKey(algorithmKeyGen, extractable, ["deriveKey", "deriveBits"]).then(function(result) {
keyPair = result;
debug("Exporting the public key...");
return crypto.subtle.exportKey("jwk", keyPair.publicKey);
}).then(function(result) {
publicKey = result;
shouldBe("publicKey.kty", "'EC'");
shouldBe("publicKey.crv", "'P-384'");
shouldBe("Base64URL.parse(publicKey.x).byteLength", "48");
shouldBe("Base64URL.parse(publicKey.y).byteLength", "48");
shouldBeUndefined("publicKey.d");
shouldBe("publicKey.key_ops", "[ ]");
shouldBe("publicKey.ext", "true");
debug("Exporting the private key...");
return crypto.subtle.exportKey("jwk", keyPair.privateKey);
}).then(function(result) {
privateKey = result;
shouldBe("privateKey.kty", "'EC'");
shouldBe("privateKey.crv", "'P-384'");
shouldBe("Base64URL.parse(privateKey.x).byteLength", "48");
shouldBe("Base64URL.parse(privateKey.y).byteLength", "48");
shouldBe("Base64URL.parse(privateKey.d).byteLength", "48");
shouldBe("privateKey.key_ops", "['deriveBits', 'deriveKey']");
shouldBe("privateKey.ext", "true");
finishJSTest();
});
</script>
<script src="../../resources/js-test-post.js"></script>
</body>
</html>