mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
b9a6ab5c48
PR-URL: https://github.com/nodejs/node/pull/49221 Refs: https://github.com/nodejs/node/issues/49202 Refs: https://github.com/nodejs/node/issues/41206 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
41 lines
1.0 KiB
JavaScript
41 lines
1.0 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
|
|
const assert = require('assert');
|
|
const {
|
|
generateKeyPair,
|
|
} = require('crypto');
|
|
|
|
// Test async elliptic curve key generation with 'jwk' encoding.
|
|
{
|
|
[
|
|
'ed25519',
|
|
'ed448',
|
|
'x25519',
|
|
'x448',
|
|
].forEach((type) => {
|
|
generateKeyPair(type, {
|
|
publicKeyEncoding: {
|
|
format: 'jwk'
|
|
},
|
|
privateKeyEncoding: {
|
|
format: 'jwk'
|
|
}
|
|
}, common.mustSucceed((publicKey, privateKey) => {
|
|
assert.strictEqual(typeof publicKey, 'object');
|
|
assert.strictEqual(typeof privateKey, 'object');
|
|
assert.strictEqual(publicKey.x, privateKey.x);
|
|
assert(!publicKey.d);
|
|
assert(privateKey.d);
|
|
assert.strictEqual(publicKey.kty, 'OKP');
|
|
assert.strictEqual(publicKey.kty, privateKey.kty);
|
|
const expectedCrv = `${type.charAt(0).toUpperCase()}${type.slice(1)}`;
|
|
assert.strictEqual(publicKey.crv, expectedCrv);
|
|
assert.strictEqual(publicKey.crv, privateKey.crv);
|
|
}));
|
|
});
|
|
}
|