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"); | |
}; | |
}); |
im totally gonna sue you now
^^^ aahahah isaacs
var crypto = require('crypto');
["sha1", "md5", "sha256", "sha512", "ripemd160"].forEach(function(algo) {
exports[algo] = function(data, salt) {
return crypto["createH"+(typeof salt != 'undefined' ? "mac":"ash"](algo,salt)
.update(data).digest("hex");
};
});
I almost wrote that but opted for readability :-P Now let's all stop playing around and land this in node :-)
so i think we are going to sit on this for a few days.
isaacs has some really good ideas for doing streaming file checksums. lets see if anyone else responds on the mailing list
something like
var h = hasher("md5"); sys.pump(myFileReadStream, h); h.on("data", function (hash) { assert(hash === expectedHash) }
Oh my god, you totally took my non-open-source proprietary IM and open sourced it on github.
You are so super sued.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
mine's totally smaller, just look at the awesome use of the grouping with the ternary :-)