‹prev | My Chain | next› A quick link in my chain tonight as I try to get session IDs MD5 encoded in my (fab) game. Fab.js proper does not have any crypto support, so I need to drop down to node.js. Happily node.js has a well documented crypto module (then again, everything in node.js is well documented). If I have var data="asdf", I can md5 sign it with:var data = "asdf"; var crypto = require('cr