I have a string that I want to hash. What's the easiest way to generate the hash in node.js?
The hash is for versioning, not security.
Thanks.
|
|
|
Take a look at crypto.createHash(algorithm)
|
||||
|
|
|
If you just want to md5 hash a simple string I found this works for me.
bada-bing |
|||
|
You could also use one of the modules sha1 or MD5 which both do the job.
and then
|
|||
|
|