Skip to content

Instantly share code, notes, and snippets.

@mvrilo
Created July 16, 2010 18:39
Show Gist options
  • Save mvrilo/478737 to your computer and use it in GitHub Desktop.
Save mvrilo/478737 to your computer and use it in GitHub Desktop.
#!/usr/bin/env node
console.log("output string 'test' encrypted");
var crypto = require('crypto');
function md5(str) {
var hash = crypto.createHash('md5');
hash = hash.update(str);
hash = hash.digest('hex');
return hash;
}
console.log(md5('test'));
// console.log(require('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