You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
josephnicholas 82607adab2 Changes on Equihash Tests 6 years ago
build Changes on Equihash Tests 6 years ago
crypto Changes on Equihash Tests 6 years ago
support Initial Commit 6 years ago
LICENSE Initial Commit 6 years ago
README.md Initial Commit 6 years ago
arith_uint256.cpp Changes on Equihash Tests 6 years ago
arith_uint256.h Changes on Equihash Tests 6 years ago
binding.gyp Changes on Equihash Tests 6 years ago
equihashverify.cc Changes on Equihash Tests 6 years ago
index.js Initial Commit 6 years ago
package-lock.json Initial Commit 6 years ago
package.json Initial Commit 6 years ago
random.cpp Initial Commit 6 years ago
random.h Initial Commit 6 years ago
serialize.h Initial Commit 6 years ago
test.js Initial Commit 6 years ago
tinyformat.h Initial Commit 6 years ago
uint256.cpp Initial Commit 6 years ago
uint256.h Initial Commit 6 years ago
util.cpp Initial Commit 6 years ago
util.h Initial Commit 6 years ago
utilstrencodings.cpp Initial Commit 6 years ago
utilstrencodings.h Initial Commit 6 years ago
utiltime.cpp Initial Commit 6 years ago
utiltime.h Initial Commit 6 years ago

README.md

equihashverify

nodejs native binding to check for valid Equihash solutions

##usage:

var ev = require('bindings')('equihashverify.node');

var header = new Buffer(..., 'hex');
var solution = new Buffer(..., 'hex'); //do not include byte size preamble "fd4005"

ev.verify(header, solution);
//returns boolean

##help https://zclassic.herokuapp.com