Skip to content

Instantly share code, notes, and snippets.

View Server4001's full-sized avatar

Brice Bentler Server4001

  • McGraw Hill Education
  • Seattle, WA
View GitHub Profile
@kitek
kitek / gist:1579117
Created January 8, 2012 17:50
NodeJS create md5 hash from string
var data = "do shash'owania";
var crypto = require('crypto');
crypto.createHash('md5').update(data).digest("hex");