cobra_omega
Member
6
Posts
72
Reputation
Apr 7, 2021
Joined
Recent posts
- holiday wishesJun 2, 2026
Hope the holiday season brings you joy and hope. Wishing you all a Merry Christmas and a happy New Year! Enjoy the festivities!
- Finding X values for a given Y coordinateJan 23, 2024
here u go:
- Finding X values for a given Y coordinateJan 21, 2024
via sagemath
- how to use pow with elliptic curvesAug 15, 2021
GPT is silly:) I have readed a lot of sources. in all exponential in ecdlp is rewriten as multiplicative in the group. and I really do not know why.
- how to use pow with elliptic curvesAug 15, 2021
I will explain: let n -> order of the group - choosed as secp256k1 n = 0xfffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141 we have our generaror as G in secp256k1: G.x =…
- how to use pow with elliptic curvesAug 15, 2021
Hey, I know this might sound silly. So, I've got something like this in pure Python: d = pow(g, f * (n 2), n) where: g is the generator as an integer f is some int value n is the order Now, I'm trying to figure out how…