omega_2013

Senior Member
3
Posts
1,043
Reputation
Apr 27, 2019
Joined
Recent posts
  • lol ChatGPT sure gets it wrong sometimes i’ve been through so many sources but all I see is exponential in ecdlp rewritten as multiplicative, no clue why.

  • let me break it down: let n be the order of the secp256k1 group n = 0xfffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141 our generator G is: G.x =…

  • hey, quick question, not sure if it's dumb I've got something like this in pure python: d = pow(g, f*(n-2), n) so, g is just an integer generator and I wanna know how to do this with elliptic curves where g is a point…

  • Here’s my suggestion: try using sagemath for this. It can make the calculations a lot easier.

  • You need to look into calculating the modular cubic root. It's pretty straightforward once you get the hang of it. For any given Y, you can usually find 0 to 3 X values that match.