mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 21:19:50 +01:00
b781eaf430
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>
29 lines
542 B
JavaScript
29 lines
542 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
|
|
const assert = require('assert');
|
|
|
|
const {
|
|
generateKeyPairSync,
|
|
} = require('crypto');
|
|
|
|
// Test invalid parameter encoding.
|
|
{
|
|
assert.throws(() => generateKeyPairSync('dsa', {
|
|
modulusLength: 1024,
|
|
publicKeyEncoding: {
|
|
format: 'jwk'
|
|
},
|
|
privateKeyEncoding: {
|
|
format: 'jwk'
|
|
}
|
|
}), {
|
|
name: 'Error',
|
|
code: 'ERR_CRYPTO_JWK_UNSUPPORTED_KEY_TYPE',
|
|
message: 'Unsupported JWK Key Type.'
|
|
});
|
|
}
|