Created
July 21, 2010 23:21
-
-
Save scottgonzalez/485299 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var crypto = require('crypto'); | |
["sha1", "md5", "sha256", "sha512", "ripemd160"].forEach(function(algo) { | |
exports[algo] = function(data, salt) { | |
return (typeof salt != 'undefined' ? | |
crypto.createHmac(algo, salt) : | |
crypto.createHash(algo) | |
).update(data).digest("hex"); | |
}; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Oh my god, you totally took my non-open-source proprietary IM and open sourced it on github.
You are so super sued.