-
-
Notifications
You must be signed in to change notification settings - Fork 35.4k
Expand file tree
/
Copy pathtest-crypto-dh-stateless.js
More file actions
581 lines (524 loc) Β· 20.2 KB
/
test-crypto-dh-stateless.js
File metadata and controls
581 lines (524 loc) Β· 20.2 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
'use strict';
const common = require('../common');
if (!common.hasCrypto)
common.skip('missing crypto');
const assert = require('assert');
const crypto = require('crypto');
const { hasOpenSSL } = require('../common/crypto');
// Error code for a key-type mismatch during (EC)DH. The underlying OpenSSL
// error code varies by version, and in OpenSSL 4.0 by platform: some builds
// report a generic internal error instead of a typed key-type mismatch.
// https://github.com/openssl/openssl/issues/30895
// TODO(panva): Tighten this check once/if fixed.
let keyTypeMismatchCode;
if (hasOpenSSL(4, 0)) {
keyTypeMismatchCode =
/^ERR_OSSL_EVP_(OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE|INTERNAL_ERROR)$/;
} else if (hasOpenSSL(3)) {
keyTypeMismatchCode = 'ERR_OSSL_EVP_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE';
} else {
keyTypeMismatchCode = 'ERR_OSSL_EVP_DIFFERENT_KEY_TYPES';
}
assert.throws(() => crypto.diffieHellman(), {
name: 'TypeError',
code: 'ERR_INVALID_ARG_TYPE',
message: 'The "options" argument must be of type object. Received undefined'
});
assert.throws(() => crypto.diffieHellman(null), {
name: 'TypeError',
code: 'ERR_INVALID_ARG_TYPE',
message: 'The "options" argument must be of type object. Received null'
});
assert.throws(() => crypto.diffieHellman([]), {
name: 'TypeError',
code: 'ERR_INVALID_ARG_TYPE',
message:
'The "options" argument must be of type object. ' +
'Received an instance of Array',
});
assert.throws(() => crypto.diffieHellman(
crypto.generateKeyPairSync('ec', { namedCurve: 'P-256' }), null), {
name: 'TypeError',
code: 'ERR_INVALID_ARG_TYPE',
message: 'The "callback" argument must be of type function. Received null'
});
{
const kp = {
privateKey: crypto.generateKeySync('aes', { length: 128 }),
publicKey: crypto.generateKeyPairSync('x25519').publicKey,
};
assert.throws(() => {
test(kp, kp);
}, {
code: 'ERR_CRYPTO_INVALID_KEY_OBJECT_TYPE',
message: 'Invalid key object type secret, expected private.'
});
}
{
const kp = {
privateKey: crypto.generateKeyPairSync('x25519').publicKey,
publicKey: crypto.generateKeyPairSync('x25519').privateKey,
};
assert.throws(() => {
test(kp, kp);
}, {
code: 'ERR_CRYPTO_INVALID_KEY_OBJECT_TYPE',
message: 'Invalid key object type public, expected private.'
});
}
{
const { publicKey: pub } = crypto.generateKeyPairSync('x25519');
assert.throws(() => {
crypto.diffieHellman({
privateKey: pub,
publicKey: pub,
});
}, {
code: 'ERR_CRYPTO_INVALID_KEY_OBJECT_TYPE',
message: 'Invalid key object type public, expected private.'
});
}
{
const kp = {
privateKey: crypto.generateKeyPairSync('x25519').privateKey,
publicKey: crypto.generateKeySync('aes', { length: 128 }),
};
assert.throws(() => {
test(kp, kp);
}, {
code: 'ERR_CRYPTO_INVALID_KEY_OBJECT_TYPE',
message: 'Invalid key object type secret, expected private or public.'
});
}
// Test that error messages include the correct property path
{
const kp = crypto.generateKeyPairSync('x25519');
const pub = kp.publicKey.export({ type: 'spki', format: 'pem' });
const priv = kp.privateKey.export({ type: 'pkcs8', format: 'pem' });
// Invalid privateKey format
assert.throws(() => crypto.diffieHellman({
privateKey: { key: Buffer.alloc(0), format: 'banana', type: 'pkcs8' },
publicKey: pub,
}), {
code: 'ERR_INVALID_ARG_VALUE',
message: /options\.privateKey\.format/,
});
// Invalid privateKey type
assert.throws(() => crypto.diffieHellman({
privateKey: { key: Buffer.alloc(0), format: 'der', type: 'banana' },
publicKey: pub,
}), {
code: 'ERR_INVALID_ARG_VALUE',
message: /options\.privateKey\.type/,
});
// Invalid publicKey format
assert.throws(() => crypto.diffieHellman({
publicKey: { key: Buffer.alloc(0), format: 'banana', type: 'spki' },
privateKey: priv,
}), {
code: 'ERR_INVALID_ARG_VALUE',
message: /options\.publicKey\.format/,
});
// Invalid publicKey type
assert.throws(() => crypto.diffieHellman({
publicKey: { key: Buffer.alloc(0), format: 'der', type: 'banana' },
privateKey: priv,
}), {
code: 'ERR_INVALID_ARG_VALUE',
message: /options\.publicKey\.type/,
});
}
// Runs diffieHellman for key pairs in both directions,
// verifies results match, and checks both sync and async paths.
function test({ publicKey: alicePublicKey, privateKey: alicePrivateKey },
{ publicKey: bobPublicKey, privateKey: bobPrivateKey },
expectedValue) {
const buf1 = crypto.diffieHellman({
privateKey: alicePrivateKey,
publicKey: bobPublicKey
});
const buf2 = crypto.diffieHellman({
privateKey: bobPrivateKey,
publicKey: alicePublicKey
});
const buf3 = crypto.diffieHellman({
privateKey: bobPrivateKey,
publicKey: alicePrivateKey
});
assert.deepStrictEqual(buf1, buf2);
assert.deepStrictEqual(buf1, buf3);
if (expectedValue !== undefined)
assert.deepStrictEqual(buf1, expectedValue);
// Verify async produces the same results
crypto.diffieHellman({
privateKey: alicePrivateKey,
publicKey: bobPublicKey
}, common.mustSucceed((asyncBuf) => {
assert.deepStrictEqual(asyncBuf, buf1);
}));
crypto.diffieHellman({
privateKey: bobPrivateKey,
publicKey: alicePublicKey
}, common.mustSucceed((asyncBuf) => {
assert.deepStrictEqual(asyncBuf, buf1);
}));
}
// Verifies diffieHellman succeeds sync and async with expected result.
function testDH(options, expected) {
const syncResult = crypto.diffieHellman(options);
if (expected !== undefined) {
assert.deepStrictEqual(syncResult, expected);
}
crypto.diffieHellman(options, common.mustSucceed((asyncResult) => {
assert.deepStrictEqual(asyncResult, syncResult);
}));
}
// Verifies diffieHellman fails with expected error, both sync and async.
function testDHError(options, expected) {
assert.throws(() => crypto.diffieHellman(options), expected);
crypto.diffieHellman(options, common.mustCall((err) => {
assert.ok(err);
for (const [key, value] of Object.entries(expected)) {
if (value instanceof RegExp) {
assert.match(err[key], value);
} else {
assert.strictEqual(err[key], value);
}
}
}));
}
const alicePrivateKey = crypto.createPrivateKey({
key: '-----BEGIN PRIVATE KEY-----\n' +
'MIIBoQIBADCB1QYJKoZIhvcNAQMBMIHHAoHBAP//////////yQ/aoiFowjTExmKL\n' +
'gNwc0SkCTgiKZ8x0Agu+pjsTmyJRSgh5jjQE3e+VGbPNOkMbMCsKbfJfFDdP4TVt\n' +
'bVHCReSFtXZiXn7G9ExC6aY37WsL/1y29Aa37e44a/taiZ+lrp8kEXxLH+ZJKGZR\n' +
'7ORbPcIAfLihY78FmNpINhxV05ppFj+o/STPX4NlXSPco62WHGLzViCFUrue1SkH\n' +
'cJaWbWcMNU5KvJgE8XRsCMojcyf//////////wIBAgSBwwKBwEh82IAVnYNf0Kjb\n' +
'qYSImDFyg9sH6CJ0GzRK05e6hM3dOSClFYi4kbA7Pr7zyfdn2SH6wSlNS14Jyrtt\n' +
'HePrRSeYl1T+tk0AfrvaLmyM56F+9B3jwt/nzqr5YxmfVdXb2aQV53VS/mm3pB2H\n' +
'iIt9FmvFaaOVe2DupqSr6xzbf/zyON+WF5B5HNVOWXswgpgdUsCyygs98hKy/Xje\n' +
'TGzJUoWInW39t0YgMXenJrkS0m6wol8Rhxx81AGgELNV7EHZqg==\n' +
'-----END PRIVATE KEY-----',
format: 'pem'
});
const alicePublicKey = crypto.createPublicKey({
key: '-----BEGIN PUBLIC KEY-----\n' +
'MIIBnzCB1QYJKoZIhvcNAQMBMIHHAoHBAP//////////yQ/aoiFowjTExmKLgNwc\n' +
'0SkCTgiKZ8x0Agu+pjsTmyJRSgh5jjQE3e+VGbPNOkMbMCsKbfJfFDdP4TVtbVHC\n' +
'ReSFtXZiXn7G9ExC6aY37WsL/1y29Aa37e44a/taiZ+lrp8kEXxLH+ZJKGZR7ORb\n' +
'PcIAfLihY78FmNpINhxV05ppFj+o/STPX4NlXSPco62WHGLzViCFUrue1SkHcJaW\n' +
'bWcMNU5KvJgE8XRsCMojcyf//////////wIBAgOBxAACgcBR7+iL5qx7aOb9K+aZ\n' +
'y2oLt7ST33sDKT+nxpag6cWDDWzPBKFDCJ8fr0v7yW453px8N4qi4R7SYYxFBaYN\n' +
'Y3JvgDg1ct2JC9sxSuUOLqSFn3hpmAjW7cS0kExIVGfdLlYtIqbhhuo45cTEbVIM\n' +
'rDEz8mjIlnvbWpKB9+uYmbjfVoc3leFvUBqfG2In2m23Md1swsPxr3n7g68H66JX\n' +
'iBJKZLQMqNdbY14G9rdKmhhTJrQjC+i7Q/wI8JPhOFzHIGA=\n' +
'-----END PUBLIC KEY-----',
format: 'pem'
});
const bobPrivateKey = crypto.createPrivateKey({
key: '-----BEGIN PRIVATE KEY-----\n' +
'MIIBoQIBADCB1QYJKoZIhvcNAQMBMIHHAoHBAP//////////yQ/aoiFowjTExmKL\n' +
'gNwc0SkCTgiKZ8x0Agu+pjsTmyJRSgh5jjQE3e+VGbPNOkMbMCsKbfJfFDdP4TVt\n' +
'bVHCReSFtXZiXn7G9ExC6aY37WsL/1y29Aa37e44a/taiZ+lrp8kEXxLH+ZJKGZR\n' +
'7ORbPcIAfLihY78FmNpINhxV05ppFj+o/STPX4NlXSPco62WHGLzViCFUrue1SkH\n' +
'cJaWbWcMNU5KvJgE8XRsCMojcyf//////////wIBAgSBwwKBwHxnT7Zw2Ehh1vyw\n' +
'eolzQFHQzyuT0y+3BF+FxK2Ox7VPguTp57wQfGHbORJ2cwCdLx2mFM7gk4tZ6COS\n' +
'E3Vta85a/PuhKXNLRdP79JgLnNtVtKXB+ePDS5C2GgXH1RHvqEdJh7JYnMy7Zj4P\n' +
'GagGtIy3dV5f4FA0B/2C97jQ1pO16ah8gSLQRKsNpTCw2rqsZusE0rK6RaYAef7H\n' +
'y/0tmLIsHxLIn+WK9CANqMbCWoP4I178BQaqhiOBkNyNZ0ndqA==\n' +
'-----END PRIVATE KEY-----',
format: 'pem'
});
const bobPublicKey = crypto.createPublicKey({
key: '-----BEGIN PUBLIC KEY-----\n' +
'MIIBoDCB1QYJKoZIhvcNAQMBMIHHAoHBAP//////////yQ/aoiFowjTExmKLgNwc\n' +
'0SkCTgiKZ8x0Agu+pjsTmyJRSgh5jjQE3e+VGbPNOkMbMCsKbfJfFDdP4TVtbVHC\n' +
'ReSFtXZiXn7G9ExC6aY37WsL/1y29Aa37e44a/taiZ+lrp8kEXxLH+ZJKGZR7ORb\n' +
'PcIAfLihY78FmNpINhxV05ppFj+o/STPX4NlXSPco62WHGLzViCFUrue1SkHcJaW\n' +
'bWcMNU5KvJgE8XRsCMojcyf//////////wIBAgOBxQACgcEAi26oq8z/GNSBm3zi\n' +
'gNt7SA7cArUBbTxINa9iLYWp6bxrvCKwDQwISN36/QUw8nUAe8aRyMt0oYn+y6vW\n' +
'Pw5OlO+TLrUelMVFaADEzoYomH0zVGb0sW4aBN8haC0mbrPt9QshgCvjr1hEPEna\n' +
'QFKfjzNaJRNMFFd4f2Dn8MSB4yu1xpA1T2i0JSk24vS2H55jx24xhUYtfhT2LJgK\n' +
'JvnaODey/xtY4Kql10ZKf43Lw6gdQC3G8opC9OxVxt9oNR7Z\n' +
'-----END PUBLIC KEY-----',
format: 'pem'
});
assert.throws(() => crypto.diffieHellman({ privateKey: alicePrivateKey }), {
name: 'TypeError',
code: 'ERR_INVALID_ARG_TYPE',
});
assert.throws(() => crypto.diffieHellman({ publicKey: alicePublicKey }), {
name: 'TypeError',
code: 'ERR_INVALID_ARG_TYPE',
});
const privateKey = Buffer.from(
'487CD880159D835FD0A8DBA9848898317283DB07E822741B344AD397BA84CDDD3920A51588' +
'B891B03B3EBEF3C9F767D921FAC1294D4B5E09CABB6D1DE3EB4527989754FEB64D007EBBDA' +
'2E6C8CE7A17EF41DE3C2DFE7CEAAF963199F55D5DBD9A415E77552FE69B7A41D87888B7D16' +
'6BC569A3957B60EEA6A4ABEB1CDB7FFCF238DF961790791CD54E597B3082981D52C0B2CA0B' +
'3DF212B2FD78DE4C6CC95285889D6DFDB746203177A726B912D26EB0A25F11871C7CD401A0' +
'10B355EC41D9AA', 'hex');
const publicKey = Buffer.from(
'8b6ea8abccff18d4819b7ce280db7b480edc02b5016d3c4835af622d85a9e9bc6bbc22b00d' +
'0c0848ddfafd0530f275007bc691c8cb74a189fecbabd63f0e4e94ef932eb51e94c5456800' +
'c4ce8628987d335466f4b16e1a04df21682d266eb3edf50b21802be3af58443c49da40529f' +
'8f335a25134c1457787f60e7f0c481e32bb5c690354f68b4252936e2f4b61f9e63c76e3185' +
'462d7e14f62c980a26f9da3837b2ff1b58e0aaa5d7464a7f8dcbc3a81d402dc6f28a42f4ec' +
'55c6df68351ed9', 'hex');
const group = crypto.getDiffieHellman('modp5');
const dh = crypto.createDiffieHellman(group.getPrime(), group.getGenerator());
dh.setPrivateKey(privateKey);
// Test simple Diffie-Hellman, no curves involved.
test({ publicKey: alicePublicKey, privateKey: alicePrivateKey },
{ publicKey: bobPublicKey, privateKey: bobPrivateKey },
dh.computeSecret(publicKey));
test(crypto.generateKeyPairSync('dh', { group: 'modp5' }),
crypto.generateKeyPairSync('dh', { group: 'modp5' }));
test(crypto.generateKeyPairSync('dh', { group: 'modp5' }),
crypto.generateKeyPairSync('dh', { prime: group.getPrime() }));
// DH parameter mismatch tests
{
const list = [
// Same generator, but different primes.
[{ group: 'modp5' }, { group: 'modp18' }]];
// TODO(danbev): Take a closer look if there should be a check in OpenSSL3
// when the dh parameters differ.
if (!hasOpenSSL(3)) {
// Same primes, but different generator.
list.push([{ group: 'modp5' }, { prime: group.getPrime(), generator: 5 }]);
// Same generator, but different primes.
list.push([{ primeLength: 1024 }, { primeLength: 1024 }]);
}
for (const [params1, params2] of list) {
const options = {
privateKey: crypto.generateKeyPairSync('dh', params1).privateKey,
publicKey: crypto.generateKeyPairSync('dh', params2).publicKey,
};
testDHError(options, {
name: 'Error',
code: hasOpenSSL(3) ?
'ERR_OSSL_MISMATCHING_DOMAIN_PARAMETERS' :
'ERR_OSSL_EVP_DIFFERENT_PARAMETERS'
});
}
}
// This key combination will result in an unusually short secret, and should
// not cause an assertion failure.
{
const shortPrivateKey = crypto.createPrivateKey({
key: '-----BEGIN PRIVATE KEY-----\n' +
'MIIBoQIBADCB1QYJKoZIhvcNAQMBMIHHAoHBAP//////////yQ/aoiFowjTExmKL\n' +
'gNwc0SkCTgiKZ8x0Agu+pjsTmyJRSgh5jjQE3e+VGbPNOkMbMCsKbfJfFDdP4TVt\n' +
'bVHCReSFtXZiXn7G9ExC6aY37WsL/1y29Aa37e44a/taiZ+lrp8kEXxLH+ZJKGZR\n' +
'7ORbPcIAfLihY78FmNpINhxV05ppFj+o/STPX4NlXSPco62WHGLzViCFUrue1SkH\n' +
'cJaWbWcMNU5KvJgE8XRsCMojcyf//////////wIBAgSBwwKBwHu9fpiqrfJJ+tl9\n' +
'ujFtEWv4afub6A/1/7sgishOYN3YQ+nmWQlmPpveIY34an5dG82CTrixHwUzQTMF\n' +
'JaiCW3ax9+qk31f2jTNKrQznmKgopVKXF0FEJC6H79W/8Y0U14gsI9sHpovKhfou\n' +
'RQD0QogW7ejSwMG8hCYibfrvMm0b5PHlwimISyEKh7VtDQ1frYN/Wr9ZbiV+FePJ\n' +
'2j6RUKYNj1Pv+B4zdMgiLLjILAs8WUfbHciU21KSJh1izVQaUQ==\n' +
'-----END PRIVATE KEY-----'
});
const shortPublicKey = crypto.createPublicKey({
key: '-----BEGIN PUBLIC KEY-----\n' +
'MIIBoDCB1QYJKoZIhvcNAQMBMIHHAoHBAP//////////yQ/aoiFowjTExmKLgNwc\n' +
'0SkCTgiKZ8x0Agu+pjsTmyJRSgh5jjQE3e+VGbPNOkMbMCsKbfJfFDdP4TVtbVHC\n' +
'ReSFtXZiXn7G9ExC6aY37WsL/1y29Aa37e44a/taiZ+lrp8kEXxLH+ZJKGZR7ORb\n' +
'PcIAfLihY78FmNpINhxV05ppFj+o/STPX4NlXSPco62WHGLzViCFUrue1SkHcJaW\n' +
'bWcMNU5KvJgE8XRsCMojcyf//////////wIBAgOBxQACgcEAmG9LpD8SAA6/W7oK\n' +
'E4MCuuQtf5E8bqtcEAfYTOOvKyCS+eiX3TtZRsvHJjUBEyeO99PR/KrGVlkSuW52\n' +
'ZOSXUOFu1L/0tqHrvRVHo+QEq3OvZ3EAyJkdtSEUTztxuUrMOyJXHDc1OUdNSnk0\n' +
'taGX4mP3247golVx2DS4viDYs7UtaMdx03dWaP6y5StNUZQlgCIUzL7MYpC16V5y\n' +
'KkFrE+Kp/Z77gEjivaG6YuxVj4GPLxJYbNFVTel42oSVeKuq\n' +
'-----END PUBLIC KEY-----',
format: 'pem'
});
testDH({ publicKey: shortPublicKey, privateKey: shortPrivateKey },
Buffer.from(
'0099d0fa242af5db9ea7330e23937a27db041f79c581500fc7f9976' +
'554d59d5b9ced934778d72e19a1fefc81e9d981013198748c0b5c6c' +
'762985eec687dc5bec5c9367b05837daee9d0bcc29024ed7f3abba1' +
'2794b65a745117fb0d87bc5b1b2b68c296c3f686cc29e450e4e1239' +
'21f56a5733fe58aabf71f14582954059c2185d342b9b0fa10c2598a' +
'5426c2baee7f9a686fc1e16cd4757c852bf7225a2732250548efe28' +
'debc26f1acdec51efe23d20786a6f8a14d360803bbc71972e87fd3',
'hex'));
}
// Test ECDH.
test(crypto.generateKeyPairSync('ec', { namedCurve: 'P-256' }),
crypto.generateKeyPairSync('ec', { namedCurve: 'P-256' }));
{
const options = {
privateKey: crypto.generateKeyPairSync('ec', { namedCurve: 'P-256' }).privateKey,
publicKey: crypto.generateKeyPairSync('ec', { namedCurve: 'P-384' }).publicKey,
};
testDHError(options, {
name: 'Error',
code: hasOpenSSL(3) ?
'ERR_OSSL_MISMATCHING_DOMAIN_PARAMETERS' :
'ERR_OSSL_EVP_DIFFERENT_PARAMETERS'
});
}
test(crypto.generateKeyPairSync('x448'),
crypto.generateKeyPairSync('x448'));
test(crypto.generateKeyPairSync('x25519'),
crypto.generateKeyPairSync('x25519'));
{
const options = {
privateKey: crypto.generateKeyPairSync('x448').privateKey,
publicKey: crypto.generateKeyPairSync('x25519').publicKey,
};
testDHError(options, { code: keyTypeMismatchCode });
}
// Test all key encoding formats
for (const { privateKey: alicePriv, publicKey: bobPub } of [
crypto.generateKeyPairSync('ec', { namedCurve: 'P-256' }),
crypto.generateKeyPairSync('x25519'),
]) {
const expected = crypto.diffieHellman({
privateKey: alicePriv,
publicKey: bobPub,
});
const encodings = [
// PEM string
{
privateKey: alicePriv.export({ type: 'pkcs8', format: 'pem' }),
publicKey: bobPub.export({ type: 'spki', format: 'pem' }),
},
// PEM { key, format } object
{
privateKey: {
key: alicePriv.export({ type: 'pkcs8', format: 'pem' }),
format: 'pem',
},
publicKey: {
key: bobPub.export({ type: 'spki', format: 'pem' }),
format: 'pem',
},
},
// DER PKCS#8 / SPKI
{
privateKey: {
key: alicePriv.export({ type: 'pkcs8', format: 'der' }),
format: 'der',
type: 'pkcs8',
},
publicKey: {
key: bobPub.export({ type: 'spki', format: 'der' }),
format: 'der',
type: 'spki',
},
},
// JWK
{
privateKey: { key: alicePriv.export({ format: 'jwk' }), format: 'jwk' },
publicKey: { key: bobPub.export({ format: 'jwk' }), format: 'jwk' },
},
// Raw key material
{
privateKey: {
key: alicePriv.export({ format: 'raw-private' }),
format: 'raw-private',
asymmetricKeyType: alicePriv.asymmetricKeyType,
...alicePriv.asymmetricKeyDetails,
},
publicKey: {
key: bobPub.export({ format: 'raw-public' }),
format: 'raw-public',
asymmetricKeyType: bobPub.asymmetricKeyType,
...bobPub.asymmetricKeyDetails,
},
},
];
// EC-only encodings
if (alicePriv.asymmetricKeyType === 'ec') {
// DER SEC1 private key
encodings.push({
privateKey: {
key: alicePriv.export({ type: 'sec1', format: 'der' }),
format: 'der',
type: 'sec1',
},
publicKey: bobPub,
});
// Raw with compressed public key
encodings.push({
privateKey: {
key: alicePriv.export({ format: 'raw-private' }),
format: 'raw-private',
asymmetricKeyType: 'ec',
...alicePriv.asymmetricKeyDetails,
},
publicKey: {
key: bobPub.export({ format: 'raw-public', type: 'compressed' }),
format: 'raw-public',
asymmetricKeyType: 'ec',
...bobPub.asymmetricKeyDetails,
},
});
}
for (const options of encodings) {
testDH(options, expected);
}
}
// Test C++ error conditions (both sync throws and async callback)
{
const ec256 = crypto.generateKeyPairSync('ec', { namedCurve: 'P-256' });
const ec384 = crypto.generateKeyPairSync('ec', { namedCurve: 'P-384' });
const x448 = crypto.generateKeyPairSync('x448');
const x25519 = crypto.generateKeyPairSync('x25519');
const ed25519 = crypto.generateKeyPairSync('ed25519');
const zeroX25519PublicKey = crypto.createPublicKey('-----BEGIN PUBLIC KEY-----\n' +
'MCowBQYDK2VuAyEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=\n' +
'-----END PUBLIC KEY-----');
const encodings = [
{
privateKey: (key) => key.export({ type: 'pkcs8', format: 'pem' }),
publicKey: (key) => key.export({ type: 'spki', format: 'pem' }),
},
{
privateKey: (key) => key.export({ type: 'pkcs8', format: 'pem' }),
publicKey: (key) => key,
},
{
privateKey: (key) => key,
publicKey: (key) => key.export({ type: 'spki', format: 'pem' }),
},
{
privateKey: (key) => key,
publicKey: (key) => key,
},
];
for (const { privateKey: privKey, publicKey: pubKey } of encodings) {
// Mismatching EC curves
testDHError({
privateKey: privKey(ec256.privateKey),
publicKey: pubKey(ec384.publicKey),
}, { code: hasOpenSSL(3) ?
'ERR_OSSL_MISMATCHING_DOMAIN_PARAMETERS' :
'ERR_OSSL_EVP_DIFFERENT_PARAMETERS' });
// Incompatible key types (ec + x25519)
testDHError({
privateKey: privKey(ec256.privateKey),
publicKey: pubKey(x25519.publicKey),
}, { code: keyTypeMismatchCode });
// Unsupported key type (ed25519)
testDHError({
privateKey: privKey(ed25519.privateKey),
publicKey: pubKey(ed25519.publicKey),
}, { code: hasOpenSSL(4, 0) ?
/^ERR_OSSL_EVP_(OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE|INTERNAL_ERROR)$/ :
'ERR_OSSL_EVP_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE' });
// Incompatible key types (x448 + x25519)
testDHError({
privateKey: privKey(x448.privateKey),
publicKey: pubKey(x25519.publicKey),
}, { code: keyTypeMismatchCode });
// Zero x25519 public key
testDHError({
privateKey: privKey(x25519.privateKey),
publicKey: pubKey(zeroX25519PublicKey),
}, hasOpenSSL(3) ?
{ code: 'ERR_OSSL_FAILED_DURING_DERIVATION' } :
{ message: /Deriving bits failed/ });
}
}