forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebCryptoAPI.cjs
More file actions
45 lines (42 loc) · 1.43 KB
/
WebCryptoAPI.cjs
File metadata and controls
45 lines (42 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
'use strict';
const os = require('node:os');
const s390x = os.arch() === 's390x';
module.exports = {
'algorithm-discards-context.https.window.js': {
'skip': 'Not relevant in Node.js context',
},
'historical.any.js': {
'skip': 'Not relevant in Node.js context',
},
'sign_verify/eddsa_small_order_points.https.any.js': {
'fail': {
'note': 'see https://github.com/nodejs/node/issues/54572',
'expected': [
'Ed25519 Verification checks with small-order key of order - Test 1',
'Ed25519 Verification checks with small-order key of order - Test 2',
'Ed25519 Verification checks with small-order key of order - Test 12',
'Ed25519 Verification checks with small-order key of order - Test 13',
...(s390x ? [] : [
'Ed25519 Verification checks with small-order key of order - Test 0',
'Ed25519 Verification checks with small-order key of order - Test 11',
]),
],
},
},
'getRandomValues.any.js': {
'fail': {
'note': 'https://github.com/nodejs/node/issues/58987',
'expected': [
'Large length: Int8Array',
'Large length: Int16Array',
'Large length: Int32Array',
'Large length: BigInt64Array',
'Large length: Uint8Array',
'Large length: Uint8ClampedArray',
'Large length: Uint16Array',
'Large length: Uint32Array',
'Large length: BigUint64Array',
],
},
},
};