sha1を求める

これでよいのかな

var crypto = require('crypto');

var sha1 = function(data) {
  return crypto.createHash('sha1').update(data).digest('hex');
};

console.log(sha1('foo')); // 0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33