Skip to content

Instantly share code, notes, and snippets.

@hachi-eiji
Last active December 11, 2015 05:39
Show Gist options
  • Save hachi-eiji/4553811 to your computer and use it in GitHub Desktop.
Save hachi-eiji/4553811 to your computer and use it in GitHub Desktop.
Node.js Tips
var crypto = require('crypto');
exports.toMd5 = function(src) {
var md5 = crypto.createHash('md5');
md5.update(src);
return md5.digest('hex');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment