mirror of
https://github.com/denoland/deno.git
synced 2024-12-18 21:35:31 -05:00
37 lines
1,017 B
JavaScript
37 lines
1,017 B
JavaScript
|
// deno-fmt-ignore-file
|
||
|
// deno-lint-ignore-file
|
||
|
|
||
|
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
|
||
|
// Taken from Node 20.11.1
|
||
|
// This file is automatically generated by `tests/node_compat/runner/setup.ts`. Do not modify this file manually.
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
const common = require('../common');
|
||
|
if (!common.hasCrypto)
|
||
|
common.skip('missing crypto');
|
||
|
|
||
|
const assert = require('assert');
|
||
|
const {
|
||
|
generateKeyPair,
|
||
|
} = require('crypto');
|
||
|
|
||
|
// Passing an empty passphrase string should not throw ERR_OSSL_CRYPTO_MALLOC_FAILURE even on OpenSSL 3.
|
||
|
// Regression test for https://github.com/nodejs/node/issues/41428.
|
||
|
generateKeyPair('rsa', {
|
||
|
modulusLength: 1024,
|
||
|
publicKeyEncoding: {
|
||
|
type: 'spki',
|
||
|
format: 'pem'
|
||
|
},
|
||
|
privateKeyEncoding: {
|
||
|
type: 'pkcs8',
|
||
|
format: 'pem',
|
||
|
cipher: 'aes-256-cbc',
|
||
|
passphrase: ''
|
||
|
}
|
||
|
}, common.mustSucceed((publicKey, privateKey) => {
|
||
|
assert.strictEqual(typeof publicKey, 'string');
|
||
|
assert.strictEqual(typeof privateKey, 'string');
|
||
|
}));
|