Skip to content

Instantly share code, notes, and snippets.

@beepony
Forked from kitek/gist:1579117
Last active March 29, 2017 06:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save beepony/d27b575785b4a289153e63e1fd9b2dbd to your computer and use it in GitHub Desktop.
Save beepony/d27b575785b4a289153e63e1fd9b2dbd to your computer and use it in GitHub Desktop.
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