NodeJS create md5 hash from string
var data = "do shash'owania"; | |
var crypto = require('crypto'); | |
crypto.createHash('md5').update(data).digest("hex"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment