Go to file
zone117x@gmail.com 29010cc5a9 more 2014-03-30 04:12:48 -04:00
build more 2014-03-30 04:12:48 -04:00
scrypt-jane Init 2014-03-30 04:04:48 -04:00
scryptjane more 2014-03-30 04:12:48 -04:00
sha3 Init 2014-03-30 04:04:48 -04:00
README.md Init 2014-03-30 04:04:48 -04:00
bcrypt.c Init 2014-03-30 04:04:48 -04:00
bcrypt.h Init 2014-03-30 04:04:48 -04:00
binding.gyp Init 2014-03-30 04:04:48 -04:00
index.js Init 2014-03-30 04:04:48 -04:00
keccak.c Init 2014-03-30 04:04:48 -04:00
keccak.h Init 2014-03-30 04:04:48 -04:00
multihashing.cc more 2014-03-30 04:12:48 -04:00
package.json more 2014-03-30 04:12:48 -04:00
quark.c Init 2014-03-30 04:04:48 -04:00
quark.h Init 2014-03-30 04:04:48 -04:00
scrypt.c Init 2014-03-30 04:04:48 -04:00
scrypt.h Init 2014-03-30 04:04:48 -04:00
scryptjane.c Init 2014-03-30 04:04:48 -04:00
scryptjane.h Init 2014-03-30 04:04:48 -04:00
scryptn.c Init 2014-03-30 04:04:48 -04:00
scryptn.h more 2014-03-30 04:12:48 -04:00
skein.c Init 2014-03-30 04:04:48 -04:00
skein.h Init 2014-03-30 04:04:48 -04:00
stdint.h Init 2014-03-30 04:04:48 -04:00
x11.c Init 2014-03-30 04:04:48 -04:00
x11.h Init 2014-03-30 04:04:48 -04:00
xcoin.c Init 2014-03-30 04:04:48 -04:00

README.md

node-multi-hashing

Cryptocurrency hashing functions for node.js.

Usage

Install

npm install multi-hashing

Hash your data

var multiHashing = require('multi-hashing');

var data = new Buffer("hash me good bro");
var hashed = multiHashing.x11(data); //returns a 32 byte buffer

console.log(hashed);
//<SlowBuffer 0b de 16 ef 2d 92 e4 35 65 c6 6c d8 92 d9 66 b4 3d 65 ..... >

Credits

  • Creators of the SHA2 and SHA3 hashing algorithms used here
  • X11 & Quark creators