Skip to content

Instantly share code, notes, and snippets.

View mdelorimier's full-sized avatar

Mathieu de Lorimier mdelorimier

  • PMML Inc
  • Montreal
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");