Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a string that I want to hash. What's the easiest way to generate the hash in node.js?

The hash is for versioning, not security.

Thanks.

share|improve this question

3 Answers

up vote 48 down vote accepted

Take a look at crypto.createHash(algorithm)

var filename = process.argv[2];
var crypto = require('crypto');
var fs = require('fs');

var md5sum = crypto.createHash('md5');

var s = fs.ReadStream(filename);
s.on('data', function(d) {
  md5sum.update(d);
});

s.on('end', function() {
  var d = md5sum.digest('hex');
  console.log(d + '  ' + filename);
});
share|improve this answer

If you just want to md5 hash a simple string I found this works for me.

var crypto = require('crypto');
var name = 'braitsch';
var hash = crypto.createHash('md5').update(name).digest("hex");
console.log(hash); // 9b74c9897bac770ffc029102a200c5de

bada-bing

share|improve this answer
17  
Woot woot, if you do require('crypto').createHash('md5').update(STRING_TO_BE_HASHED).digest("hex") you got a one-liner. Cheers mate! – balupton Aug 10 '12 at 10:26
haha, indeed – cheers! – braitsch Aug 10 '12 at 23:19

You could also use one of the modules sha1 or MD5 which both do the job.

$ npm install sha1

and then

var sha1 = require('sha1');

var hash = sha1("my message");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.