bip-schnorr icon indicating copy to clipboard operation
bip-schnorr copied to clipboard

Pure JavaScript implementation of BIP340 Schnorr Signatures for secp256k1

Results 3 bip-schnorr issues
Sort by recently updated
recently updated
newest added

Resolves my issues from https://github.com/guggero/bip-schnorr/issues/29#issuecomment-1096422957 but wondering one last bit. I currently use https://github.com/bcoin-org/bcrypto/blob/master/lib/js/schnorr.js#L251-L261 to derive public keys but in the aforementioned mentioned issue you mentioned that the issue most...

Hi! Awesome work! I was wondering how do you get a multsig of m out of n, let's suppose, m is 2 and n is 3. So, I am interested...

https://github.com/guggero/bip-schnorr/blob/b6479ecf55da1266ae49eac3565bca3a8b1a8832/src/schnorr.js#L32 To simplify, you have `if (auxRand is present) { use auxRand } else { deterministicGetK0() } ` Specification https://github.com/bitcoin/bips/blob/master/bip-0340.mediawiki#default-signing says `use auxRand` should always be used. `deterministicGetK0` is some...