mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
44 lines
1.0 KiB
JavaScript
44 lines
1.0 KiB
JavaScript
|
'use strict';
|
||
|
|
||
|
const common = require('../common');
|
||
|
if (!common.hasCrypto)
|
||
|
common.skip('missing crypto');
|
||
|
|
||
|
const assert = require('assert');
|
||
|
const {
|
||
|
generateKeyPair,
|
||
|
generateKeyPairSync,
|
||
|
getCurves,
|
||
|
} = require('crypto');
|
||
|
|
||
|
// This test creates EC key pairs on curves without associated OIDs.
|
||
|
// Specifying a key encoding should not crash.
|
||
|
{
|
||
|
if (process.versions.openssl >= '1.1.1i') {
|
||
|
for (const namedCurve of ['Oakley-EC2N-3', 'Oakley-EC2N-4']) {
|
||
|
if (!getCurves().includes(namedCurve))
|
||
|
continue;
|
||
|
|
||
|
const expectedErrorCode =
|
||
|
common.hasOpenSSL3 ? 'ERR_OSSL_MISSING_OID' : 'ERR_OSSL_EC_MISSING_OID';
|
||
|
const params = {
|
||
|
namedCurve,
|
||
|
publicKeyEncoding: {
|
||
|
format: 'der',
|
||
|
type: 'spki'
|
||
|
}
|
||
|
};
|
||
|
|
||
|
assert.throws(() => {
|
||
|
generateKeyPairSync('ec', params);
|
||
|
}, {
|
||
|
code: expectedErrorCode
|
||
|
});
|
||
|
|
||
|
generateKeyPair('ec', params, common.mustCall((err) => {
|
||
|
assert.strictEqual(err.code, expectedErrorCode);
|
||
|
}));
|
||
|
}
|
||
|
}
|
||
|
}
|