You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 with elliptic okay, but I am having difficulty figuring out how to do scalar addition. I see the official secp256k1 C library has this function:
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 with elliptic okay, but I am having difficulty figuring out how to do scalar addition. I see the official secp256k1 C library has this function:
And the tiny-secp256k1 typescript module has this:
How best to do same with elliptic?
The text was updated successfully, but these errors were encountered: