bip-schnorr
Advanced tools
Comparing version 0.0.1 to 0.0.2
{ | ||
"name": "bip-schnorr", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Pure JavaScript implementation of the BIP schnorr signature scheme", | ||
@@ -5,0 +5,0 @@ "main": "./src/index.js", |
@@ -93,2 +93,4 @@ # Pure JavaScript implementation of the Schnorr BIP | ||
**This is just a demo of how signature aggregation works with Schnorr, this is not part of any BIP yet!** | ||
### bipSchnorr.pubKeyToPoint(pubKey : Buffer) : Point | ||
@@ -95,0 +97,0 @@ Returns the point on the `secp256k1` curve that corresponds to the given 33 byte public key. |
@@ -64,3 +64,3 @@ /* global describe, it, beforeEach */ | ||
describe('aggregate', () => { | ||
describe('aggregate demo', () => { | ||
const vec1 = testVectors[1]; | ||
@@ -67,0 +67,0 @@ const vec2 = testVectors[2]; |
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
22864
100