Skip to content

Instantly share code, notes, and snippets.

@einnar82
Forked from kitek/gist:1579117
Created October 25, 2021 07:23
Show Gist options
  • Save einnar82/4f8c3054448157db14daf608f35715be to your computer and use it in GitHub Desktop.
Save einnar82/4f8c3054448157db14daf608f35715be 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