Post
Topic
Board Development & Technical Discussion
Re: Private key to public key (TUTORIAL)
by
BrewMaster
on 27/05/2020, 17:51:03 UTC
How get invert(2*P.y) =

the full name is Modular Multiplicative Inverse and to compute ModInverse(2*P.y) you have to find a value that when multiplied by your value and divided by the prime gives 1.
you can read more about it on wikipedia:
https://en.wikipedia.org/wiki/Modular_multiplicative_inverse
look at the examples below that.
the computation uses the extended Euclidean algorithm.