const {
getCiphers,
} = await import('node:crypto');
console.log(getCiphers()); // ['aes-128-cbc', 'aes-128-ccm', ...]
function
crypto.getCiphers
@returns
An array with the names of the supported cipher algorithms.
function
const {
getCiphers,
} = await import('node:crypto');
console.log(getCiphers()); // ['aes-128-cbc', 'aes-128-ccm', ...]
An array with the names of the supported cipher algorithms.