crypto.getHashes()
Returns an array with the names of the supported hash algorithms.
Example:
const hashes = crypto.getHashes(); console.log(hashes); // ['sha', 'sha1', 'sha1WithRSAEncryption', ...]
crypto.getHashes()
Returns an array with the names of the supported hash algorithms.
Example:
const hashes = crypto.getHashes(); console.log(hashes); // ['sha', 'sha1', 'sha1WithRSAEncryption', ...]
Please login to continue.