mirror of
https://github.com/denoland/deno.git
synced 2025-01-03 04:48:52 -05:00
chore(extensions/crypto): enable WPT stringification test (#11336)
This commit is contained in:
parent
d9c43f7f43
commit
391bf17479
2 changed files with 4 additions and 1 deletions
|
@ -464,6 +464,10 @@
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get [SymbolToStringTag]() {
|
||||||
|
return "SubtleCrypto";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function generateKey(normalizedAlgorithm, extractable, usages) {
|
async function generateKey(normalizedAlgorithm, extractable, usages) {
|
||||||
|
|
|
@ -1928,7 +1928,6 @@
|
||||||
"SubtleCrypto interface: operation exportKey(KeyFormat, CryptoKey)",
|
"SubtleCrypto interface: operation exportKey(KeyFormat, CryptoKey)",
|
||||||
"SubtleCrypto interface: operation wrapKey(KeyFormat, CryptoKey, CryptoKey, AlgorithmIdentifier)",
|
"SubtleCrypto interface: operation wrapKey(KeyFormat, CryptoKey, CryptoKey, AlgorithmIdentifier)",
|
||||||
"SubtleCrypto interface: operation unwrapKey(KeyFormat, BufferSource, CryptoKey, AlgorithmIdentifier, AlgorithmIdentifier, boolean, sequence<KeyUsage>)",
|
"SubtleCrypto interface: operation unwrapKey(KeyFormat, BufferSource, CryptoKey, AlgorithmIdentifier, AlgorithmIdentifier, boolean, sequence<KeyUsage>)",
|
||||||
"Stringification of crypto.subtle",
|
|
||||||
"SubtleCrypto interface: crypto.subtle must inherit property \"encrypt(AlgorithmIdentifier, CryptoKey, BufferSource)\" with the proper type",
|
"SubtleCrypto interface: crypto.subtle must inherit property \"encrypt(AlgorithmIdentifier, CryptoKey, BufferSource)\" with the proper type",
|
||||||
"SubtleCrypto interface: calling encrypt(AlgorithmIdentifier, CryptoKey, BufferSource) on crypto.subtle with too few arguments must throw TypeError",
|
"SubtleCrypto interface: calling encrypt(AlgorithmIdentifier, CryptoKey, BufferSource) on crypto.subtle with too few arguments must throw TypeError",
|
||||||
"SubtleCrypto interface: crypto.subtle must inherit property \"decrypt(AlgorithmIdentifier, CryptoKey, BufferSource)\" with the proper type",
|
"SubtleCrypto interface: crypto.subtle must inherit property \"decrypt(AlgorithmIdentifier, CryptoKey, BufferSource)\" with the proper type",
|
||||||
|
|
Loading…
Reference in a new issue