crypto.getCiphers()
Returns an array with the names of the supported cipher algorithms.
Example:
const ciphers = crypto.getCiphers(); console.log(ciphers); // ['aes-128-cbc', 'aes-128-ccm', ...]
crypto.getCiphers()
Returns an array with the names of the supported cipher algorithms.
Example:
const ciphers = crypto.getCiphers(); console.log(ciphers); // ['aes-128-cbc', 'aes-128-ccm', ...]
Please login to continue.