Post
Topic
Board Development & Technical Discussion
Merits 4 from 3 users
Re: I need a guiding hand to explain me elliptic curve cryptography
by
JuleAdka
on 02/10/2020, 18:06:21 UTC
⭐ Merited by BlackHatCoiner (2) ,ETFbitcoin (1) ,vapourminer (1)
And why someone can't simply divide 3G with G and get the 3?

Because this operation isn't defined on elliptic curves, most specially in a curve defined over a discreet field, this leads to the "discreet logarithm problem" that are an unsolved problem so far.
if you are using a curve over, let's say, the real numbers set, you can calculate it. But for cripto, usually the curves are defined over a set mod(p).

secp256k1 is defined over the set mod(p), where p is:
Code:
p = FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFE FFFFFC2F
p = 2256 - 232 - 29 - 28 - 27 - 26 - 24 - 1