Skip to content

Instantly share code, notes, and snippets.

@dhonx
Forked from kitek/gist:1579117
Created January 8, 2020 01:55
Show Gist options
  • Save dhonx/068314e97b644be9bbc5b2411df32753 to your computer and use it in GitHub Desktop.
Save dhonx/068314e97b644be9bbc5b2411df32753 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