We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca4ebed commit a132be7Copy full SHA for a132be7
1 file changed
test/parallel/test-webcrypto-webidl.js
@@ -238,7 +238,16 @@ const opts = { prefix, context };
238
239
// KeyFormat
240
{
241
- for (const good of ['jwk', 'spki', 'pkcs8', 'raw']) {
+ for (const good of [
242
+ 'jwk',
243
+ 'spki',
244
+ 'pkcs8',
245
+ 'raw',
246
+ 'raw-public',
247
+ 'raw-seed',
248
+ 'raw-secret',
249
+ 'raw-private',
250
+ ]) {
251
assert.strictEqual(converters.KeyFormat(good), good);
252
}
253
@@ -262,6 +271,10 @@ const opts = { prefix, context };
262
271
'deriveBits',
263
272
'wrapKey',
264
273
'unwrapKey',
274
+ 'encapsulateBits',
275
+ 'decapsulateBits',
276
+ 'encapsulateKey',
277
+ 'decapsulateKey',
265
278
]) {
266
279
assert.strictEqual(converters.KeyUsage(good), good);
267
280
0 commit comments