Rsa Key Generation Tool Given Two Prime Numbers
Rsa Key Generation Tool Given Two Prime Numbers 3,9/5 6155 reviews

An RSA key is just two prime numbers and one other number (from the (p, q, e) triplet all the other values can be derived). E is usually chosen as 0x010001 (though other reasonable values exist) and p and q are generated randomly (while almost any CSPRNG is going to have a backing hash algorithm the CSPRNG itself is usually considered a black box that just emits randomness).

Windows seven activation key generator reviews

RSA works using a public key and a private key and its strength relies on the hardness of prime factorization (a set of prime numbers that you multiply together to get another number). The first step in the RSA algorithm involves generating the keys.

Generating key

Choosing two primes

This is done in generate_keypair(private_key, public_key) function.Before we call this function we choose two different prime numbers (p and q), one for our private key and the other for our public key. Lets imagine I pick 2 and 7, and then we pass it to our function, so:

Calculating n

Now the first thing we do inside this function is to compute n and it's nothing more than p and q multiplied together. n is used as the modulus for the encrypting key and decryption key. So let't calculate our n:

Using Euler's totient function to calculate Phi (φ)

Next comes calculating Phi(n) (φ(n)) and it's used to calculate how many integers are less than or equal to n that do not share any common factor with n. What's interesting and important here, is that, calculating the phi function is hard, except in the case of prime numbers. Since prime numbers have no factors greater than one, the phi of any prime number, p is simply p - 1. Therefore:

In our code:

Choosing e

e is important for our encryption because e and n it will become our public_key. e must be picked randomly and have certain properties. Such as:

  • 1 < e < φ(n) (in our case e must be between 1 and 288)
  • Must be coprime with n and φ(n) (in our case, must be coprime with 323 and 288)We do so here:

if g returns one then e is coprime with phi, so their greatest common divisor is 1, which means that 1 is the only positive integer (factor) that divides both of them, e and phi.

Two

Calculating d

We use the Extended Euclid's Algorithm to generate d. This is a private exponent, it will be a part of our private key and this is used to undo the effect of e

Public key and Private key

With n, e and d, we can now get our public and private key pairs.

Public key

The public key pair is (e, n). This is what the server sends us, its public and anyone can read it.

Private key

The private key pair is (d, n). This can not be shared with anyone. It will be used to decrypt messages encrypted with the public key.

Rsa Key Generation Tool Given Two Prime Numbers 2017

For encrypting this is what we do: (m^e) % nThis function will use the public key to encrypt our plain text. We'll encrypt the string 'asd'.Let's first get our e and n from our public key pair. Then, we loop through each character in our string and get the Unicode value using ord() function. With this we then exponentiate that value by e and finally get the remainder with mod n.

Our encrypted message should look like this:

In the decrypting process we use our private key, and the process in almost the same, except that, we use d our private exponent instead of e. So:

Now we loop through each character performing our calculation. In the end we use chr() function to get our character back.