bcoin-native
Advanced tools
Comparing version 0.0.17 to 0.0.18
15
index.js
@@ -48,2 +48,12 @@ /*! | ||
bcn.siphash = function siphash(data, key) { | ||
var result = new U64(); | ||
return bcn._siphash(data, key, result); | ||
}; | ||
bcn.siphash256 = function siphash256(data, key) { | ||
var result = new U64(); | ||
return bcn._siphash256(data, key, result); | ||
}; | ||
/* | ||
@@ -59,2 +69,7 @@ * Constructor | ||
function U64() { | ||
this.hi = 0; | ||
this.lo = 0; | ||
} | ||
/* | ||
@@ -61,0 +76,0 @@ * Helpers |
{ | ||
"name": "bcoin-native", | ||
"version": "0.0.17", | ||
"version": "0.0.18", | ||
"description": "Native bindings to bitcoin-related functions", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
156574
448