Skip to content

killheaven/node-multi-hashing

Repository files navigation

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 97.9%
  • C++ 2.0%
  • Other 0.1%