Skip to content

Instantly share code, notes, and snippets.

@gvelasquez760
Created March 21, 2017 16:17
Show Gist options
  • Select an option

  • Save gvelasquez760/e738e788f1bd39cafcd68e6302767d5d to your computer and use it in GitHub Desktop.

Select an option

Save gvelasquez760/e738e788f1bd39cafcd68e6302767d5d to your computer and use it in GitHub Desktop.
NodeJS md5 from string with crypto
var crypto = require('crypto');
crypto.createHash('md5').update("test").digest("hex");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment