Awesome
MD5
MD5 algorithm written by Paul Johnston
Installation
$ component install enyo/md5
API
// MD5
md5 = require('md5'); // Hex
md5sum = md5('content');
md5 = require('md5').hex; // Identical
md5B64 = require('md5').b64; // Base 64
md5Any = require('md5').any;
// Hmac
hmac = require('md5').hmac; // Hex
hmac = require('md5').hmac.hex; // Identical
hmacB64 = require('md5').hmac.b64; // Base 64
hmacAny = require('md5').hmac.any;
License
MIT