Post
Topic
Board Development & Technical Discussion
Re: I need a guiding hand to explain me elliptic curve cryptography
by
o_e_l_e_o
on 03/10/2020, 12:14:17 UTC
For example, how all these incredibly many bounces are calculated on the axis within 1 second?
Because it doesn't need to. Like standard arithmetic, where 2x + 3x = 5x, or where 2*5 + 7*5 = 9*5, the same holds true for elliptic curve multiplication.

Let's say you want to multiply the generator point by 20. You do not need to do G+G+G+G+....+G 20 times. Instead, you can do the following:

Code:
G+G=2G
2G+2G=4G
4G+4G=8G
8G+8G=16G
16G+4G=20G

So, instead of doing 20 calculations, you only have to do 5.