mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
7224940e54
To avoid timing out on ARM machines in the CI. 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>
33 lines
922 B
JavaScript
33 lines
922 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
|
|
const assert = require('assert');
|
|
const {
|
|
generateKeyPair,
|
|
} = require('crypto');
|
|
|
|
// Test async DSA key object generation.
|
|
{
|
|
generateKeyPair('dsa', {
|
|
modulusLength: common.hasOpenSSL3 ? 2048 : 512,
|
|
divisorLength: 256
|
|
}, common.mustSucceed((publicKey, privateKey) => {
|
|
assert.strictEqual(publicKey.type, 'public');
|
|
assert.strictEqual(publicKey.asymmetricKeyType, 'dsa');
|
|
assert.deepStrictEqual(publicKey.asymmetricKeyDetails, {
|
|
modulusLength: common.hasOpenSSL3 ? 2048 : 512,
|
|
divisorLength: 256
|
|
});
|
|
|
|
assert.strictEqual(privateKey.type, 'private');
|
|
assert.strictEqual(privateKey.asymmetricKeyType, 'dsa');
|
|
assert.deepStrictEqual(privateKey.asymmetricKeyDetails, {
|
|
modulusLength: common.hasOpenSSL3 ? 2048 : 512,
|
|
divisorLength: 256
|
|
});
|
|
}));
|
|
}
|