Bryan

Results 2 issues of Bryan

I would like to take a private key (m) and add a tweak to it, a hash of something (S): `p = m + hash(S)` I can do _point_ addition...

Using secp256k1 npm module within nwjs-sdk-v0.51.2-linux-x64 ``` let sigbytes = [an ECDSA signature in DER format, 71 bytes] let dersig = Uint8Array.from( sigbytes ); let sigobj = SECP256K1.signatureImport( dersig );...