2011-09-30 sha1を求める Node.js これでよいのかな var crypto = require('crypto'); var sha1 = function(data) { return crypto.createHash('sha1').update(data).digest('hex'); }; console.log(sha1('foo')); // 0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33