Skip to content

betmoar/node-x11-hash

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-x11-hash

x11 hashing function for node.js. Useful for various cryptocurrencies.

Usage

Dependencies

sudo npm install -g node-gyp

Build

node-gyp configure
node-gyp build

Install

~

Hash your data

var x11 = require('x11-hash');

var data = new Buffer("hash me good bro");
var hashed = x11.digest(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

  • Uses scrypt.c written by Colin Percival
  • Neisklar for the python module this is based off of

About

x11 hashing function for node.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages