node-scrypt256-hash =============== Scrypt hashing function for node.js. Useful for various cryptocurrencies. Usage ----- Install npm install scrypt256-hash Hash your data var scrypt = require('scrypt256-hash'); var data = new Buffer("hash me good bro"); var hashed = scrypt.digest(data); //returns a 32 byte buffer console.log(hashed); // Credits ------- Uses scrypt.c written by Colin Percival