mirror of https://github.com/nodejs/node.git
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
// META: title=WebCryptoAPI: CryptoKey cached ECMAScript objects
|
|
|
|
// https://w3c.github.io/webcrypto/#dom-cryptokey-algorithm
|
|
// https://github.com/servo/servo/issues/33908
|
|
|
|
promise_test(function() {
|
|
return self.crypto.subtle.generateKey(
|
|
{
|
|
name: "AES-CTR",
|
|
length: 256,
|
|
},
|
|
true,
|
|
["encrypt"],
|
|
).then(
|
|
function(key) {
|
|
let a = key.algorithm;
|
|
let b = key.algorithm;
|
|
assert_true(a === b);
|
|
},
|
|
function(err) {
|
|
assert_unreached("generateKey threw an unexpected error: " + err.toString());
|
|
}
|
|
);
|
|
}, "CryptoKey.algorithm getter returns cached object");
|
|
|
|
promise_test(function() {
|
|
return self.crypto.subtle.generateKey(
|
|
{
|
|
name: "AES-CTR",
|
|
length: 256,
|
|
},
|
|
true,
|
|
["encrypt"],
|
|
).then(
|
|
function(key) {
|
|
let a = key.usages;
|
|
let b = key.usages;
|
|
assert_true(a === b);
|
|
},
|
|
function(err) {
|
|
assert_unreached("generateKey threw an unexpected error: " + err.toString());
|
|
}
|
|
);
|
|
}, "CryptoKey.usages getter returns cached object");
|