blob: efd6dbede0dcd18fbc98bc5a899544b3e4c8b07d [file] [log] [blame]
importScripts('../../../../resources/js-test-pre.js');
importScripts("../../../resources/common.js");
description("Test exporting a RSA-OAEP private key with PKCS8 format in workers.");
jsTestIsAsync = true;
var algorithmKeyGen = {
name: "RSA-OAEP",
// RsaKeyGenParams
modulusLength: 2048,
publicExponent: new Uint8Array([0x01, 0x00, 0x01]), // Equivalent to 65537
hash: "sha-1",
};
var extractable = true;
var keyPair;
debug("Generating a key pair...");
crypto.subtle.generateKey(algorithmKeyGen, extractable, ["decrypt", "encrypt", "wrapKey", "unwrapKey"]).then(function(result) {
keyPair = result;
debug("Exporting the private key...");
return crypto.subtle.exportKey("pkcs8", keyPair.privateKey);
}).then(function(result) {
privateKey = result;
shouldBeType("privateKey", "ArrayBuffer");
finishJSTest();
});