![]() |
VOOZH | about |
The crypto.createHash() method is used to create a Hash object that can be used to create hash digests by using the stated algorithm.
Syntax:
crypto.createHash( algorithm, options )Parameters: This method accepts two parameters as mentioned above and described below:
Return Type: It returns Hash object.
Example 1: Below examples illustrate the use of crypto.createHash() method in Node.js:
Output:
df287dfc1406ed2b692e1c2c783bb5cec97eac53151ee1d9810397aa0afa0d89Example 2: Below examples illustrate the use of crypto.createHash() method in Node.js:
Output:
Program done!
n95mt3468ZzAIwu/bbNU7dej6CoFkDRcNaJo7rGpLF4= index.js
We have a Cheat Sheet on Node crypto methods where we covered all the crypto methods to check those please go through Node Crypto Complete Reference article.