RSAΒΆ

The particular algorithm shown on the previous page for asymmetric encryption is known as the RSA algorithm (after its creators Rivest, Shamir, and Adleman). To explain exactly how to pick a set of A, B and C numbers that work together as keys and why they do work requires more math than we have time for here. That said, outlining the process used to generate keys is important to understand why the keys are considered to be secure.

Why is this process important? To calculate B given A or A given B you need the two prime numbers you started with. Normally those are destroyed as soon as you make the key. Since no one has the numbers, they cannot use the public number B to figure out your secret number A.

However, because C is the product of those two prime numbers (and because the product of two primes only has only those two prime factors), if you can factor C you can find the exact prime numbers used in the calculations and work backward from the public B to the secret number A. Fortunately, factoring large prime numbers is a difficult task even for computers. As long as you select really large prime numbers (in the real world you use numbers that are hundreds to thousands of digits long), you can be pretty confident no one will be able to factor your C and use that information to reveal your private key. We will come back to this possible weakness in the final week of the course - for now just keep in mind that what keeps the keys secure is the fact that factoring large numbers is really hard.

You have attempted of activities on this page