Node.js implementation of Vanilla Forums cookie and password hashes.
npm install vanilla-hashVanilla Hash
============
This is a simple straight port of the Vanilla Forums cookie and
password hashing. No attempts have been made to optimize the code
for node.js. Instead, it uses phpjs to replicate functions (e.g.,
pack) that do not exist in javascript. It was developed in order to
support the vanilla-auth module.
Travis CI Build Status
----------------------

Use
---
var vanillaHash = require('vanilla-hash')('salt', 'md5'),
hashed = vanillaHash.hash('data');
if (vanillaHash.checkCookie('Vanilla cookie')) {
console.log('Cookie has not been manipulated.');
}
As-Is policy
------------
No guarantees are made about this software. It is provided as-is. It is
under active development and may or may not be production ready.
TODO
----
Implement password hashing.