omega_2013
- Using Power Operation with Elliptic CurvesMar 2, 2020
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.
- Using Power Operation with Elliptic CurvesMar 1, 2020
let me break it down: let n be the order of the secp256k1 group n = 0xfffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141 our generator G is: G.x =…
- Using Power Operation with Elliptic CurvesFeb 28, 2020
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…
- Finding X Coordinates with Shared Y ValuesFeb 17, 2019
Here’s my suggestion: try using sagemath for this. It can make the calculations a lot easier.
- Finding X Coordinates with Shared Y ValuesFeb 17, 2019
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.