node-quark-hash =============== Quark hashing function for node.js. Useful for various cryptocurrencies. Usage ----- Install npm install quark-hash Hash your data var quark = require('quark-hash'); var data = new Buffer("hash me good bro"); var hashed = quark.digest(data); //returns a 32 byte buffer console.log(hashed); // Credits ------- * Uses scrypt.c written by Colin Percival * [Neisklar](https://github.com/Neisklar/quarkcoin-hash-python) for the python module this is based off of