| <!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 private key with PKCS8 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("pkcs8", keyPair.privateKey); |
| }).then(function(result) { |
| privateKey = result; |
| |
| shouldBe("privateKey.byteLength", "185"); |
| |
| finishJSTest(); |
| }); |
| </script> |
| |
| <script src="../../resources/js-test-post.js"></script> |
| </body> |
| </html> |