Elliptic Curve Cryptography (ECC) is a modern public-key encryption technique famous for being smaller, faster, and more efficient than incumbents. Bitcoin, for example, uses ECC as its asymmetric cryptosystem because it is so lightweight. The mathematical entity that makes all of this possible is the elliptic curve, so read on to learn how these curves enable some of the most advanced cryptography in the world.
A common use of ECC is to encrypt data so that only authorized parties can decrypt it. This has several obvious use cases, but is most commonly used to encrypt Internet traffic.
For example, in the boot.dev web app, I could use ECC to encrypt a confirmation email so that no one but the recipient could read the message.
There are many types of public-key cryptography, and Elliptic Curve Cryptography is just one flavor. Other algorithms include RSA, Diffie-Helman, etc.
Let’s go over a quick background of public-key cryptography as a jumping-off point, so that I can discuss ECC and build on top of these ideas. By all means, study more in-depth on public-key cryptography when you have the time.
Public-key cryptography allows the following to happen:
We create two keys, a public key, and a private key. The public key is given freely, and any party can encrypt data by using it. However, the private key is kept secret and only those who hold it will have the ability to decrypt data.
Let’s pretend that Facebook is going to receive a private post from Donald Trump. Facebook needs to be able to ensure that when the ex-president sends his post over the internet, no one in the middle (Like the NSA, or an internet service provider) can read the message. The entire exchange using public-key cryptography would go like this:
“I love Fox and Friends” + Public Key = “s80s1s9sadjds9s”
“s80s1s9sadjds9s” + Private Key = “I love Fox and Friends”
As you can see, this form of encryption can be quite useful. Here are some key points:
The crux of all public-key cryptographic algorithms is that they each have their own unique trapdoor function. A trapdoor function is a function that can only be computed one way, or at least can only be computed one way easily (in less than millions of years using modern computers).
A + B = C
If I’m given A and B I can compute C. However, if I’m given B and C I can also compute A. This is not a trapdoor function.
"I love Fox and Friends” + Public Key --> s80s1s9sadjds9s
If given “I love Fox and Friends” and the public key, I can produce s80s1s9sadjds9s
, but if given s80s1s9sadjds9s
and the Public Key I can’t produce “I love Fox and Friends”
In RSA, which is arguably the most widely used public-key cryptosystem, the trapdoor function relies on how hard it is to factor large numbers into their prime factors.
Public Key: 944,871,836,856,449,473
Private Key: 961,748,941
and 982,451,653
In the example above the public key is a very large number, and the private key is the two prime factors of the public key. This is a good example of a Trapdoor Function because it is very easy to multiply the numbers in the private key together to get the public key, but if all you have is the public key it will take a very long time using a computer to re-create the private key.
In real cryptography, the private key would need to be 200+ digits long to be considered secure.
You would use ECC for the same reasons as RSA. ECC and RSA both generate a public and private key and allow two parties to communicate securely. One advantage to ECC however, is that a 256-bit key in ECC offers about the same security as a 3072-bit key using RSA. ECC allows resource-constrained systems like smartphones, embedded computers, and cryptocurrency networks to use ~10% of the storage space and bandwidth required by RSA.
This is probably why most of you are here. The trapdoor function is what makes ECC special and different than RSA. The trapdoor function is similar to a mathematical game of pool.
First, we start with an arbitrary point on the curve. Next, we use the dot function to find a new point. Finally, we keep repeating the dot function to hop around the curve until we finally end up at our last point. Let’s walk through the algorithm.
A
:A dot B = -C
(Draw a line from A to B and it intersects at -C)A dot C = -D
(Draw a line from A to C and it intersects -D)A dot D = -E
(Draw a line from A to D and it intersects -E)This is a great trapdoor function because if you know where the starting point (A) is and how many hops are required to get to the ending point (E), it’s very easy to find the ending point. On the other hand, if all you know is where the starting point and ending point are, it’s nearly impossible to find how many hops it took to get there.
Public Key: Starting Point A, Ending Point E
Private Key: Number of hops from A to E
Here are a few questions I had when I first learned about ECC. Hopefully, I can address them properly.
No. The second point (we will call it -R below) is actually the result of P dot P (let’s assume the first point is called P)
P dot P = -R
So what is P dot P
? It is actually just the tangent line of P. See the graphic below:
If the line doesn’t hit the curve close to the origin, we can actually define a maximum X value where the line will wrap back around and start from the beginning again. See the graphic below for an example.
Nope! The number of hops is very large, something like 2^256
. It would take far too long to compute each hop one by one, for example p dot p dot p dot p ...
.
If however, you know the number of hops you can use an exponentiation trick to find the ending point quite quickly. For example, and omitting the details of elliptic curve operations: 2P = P dot P
and then 4P = 2P dot 2P
. This allows you to get up to those crazy high calculations exponentially faster.
ECC is used as the cryptographic key algorithm in Bitcoin because it potentially can save ~90% of the resources used by a similar RSA system. It seems that each year we see more systems moving from RSA to a more modern elliptic curve approach.
Also Published Here