Closed
Description
Version
17.2.0
Platform
Linux raynos-Precision-5530 5.4.0-91-generic #102-Ubuntu SMP Fri Nov 5 16:31:28 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
Subsystem
crypto
What steps will reproduce the bug?
Run the following script in node 17.2.0 and node 16.
const crypto = require('crypto')
crypto.generateKeyPair('rsa', {
modulusLength: 4096,
publicKeyEncoding: {
type: 'spki',
format: 'pem'
},
privateKeyEncoding: {
type: 'pkcs8',
format: 'pem',
cipher: 'aes-256-cbc',
passphrase: ''
}
}, (err, publicKey, privateKey) => {
console.log('err', err)
// cb(null, { publicKey, privateKey })
})
Node 16 has no error, node 17 has an err
The err is
[Error: error:078C0100:common libcrypto routines::malloc failure] {
opensslErrorStack: [ 'error:078C0100:common libcrypto routines::malloc failure' ],
library: 'common libcrypto routines',
reason: 'malloc failure',
code: 'ERR_OSSL_CRYPTO_MALLOC_FAILURE'
}
How often does it reproduce? Is there a required condition?
every time on linux and mac.
What is the expected behavior?
I expected node 17 to not have a regression
What do you see instead?
I see an error.
[Error: error:078C0100:common libcrypto routines::malloc failure] {
opensslErrorStack: [ 'error:078C0100:common libcrypto routines::malloc failure' ],
library: 'common libcrypto routines',
reason: 'malloc failure',
code: 'ERR_OSSL_CRYPTO_MALLOC_FAILURE'
}
Additional information
No response