Project 5 (RSA)

Key Generation, Encryption and Decryption

Objectives

In this lab you will develop a fully functional implementation of RSA. You will gain experience with finding multiplicative inverses and more practice with modular exponentiation.

Background

In the Diffie-Hellman lab, you wrote your own modular exponentiation function. We'll be using it a lot in this lab.

RSA encryption and signing: Encryption and decryption are just a matter of taking your message or ciphertext m (less than n) and computing m^e or m^d modulo n, respectively. n is called the public modulus, e the public exponent and d the private exponent. n and e together form the public key. n and d together form the private key. e is currently conventionally set to 65537 because it's cheap to compute as a modular exponent (why?).

Encryption and decryption work because (m^e)^d = m^ed = m (mod n). e and d are chosen so that their product is equal to a multple of phi(n) plus 1, that is to say: e * d = 1 ( mod phi(n) ), or e * d = k * phi(n) + 1 for some (unimportant) value of k. Euler's generalization of Fermat's Little Theorem tells us that for any m != 0, m^phi(n) = 1 (mod n). So:

if ed = k*phi(n)+1, then
m^ed = m^( k*phi(n)+1 ) = m^( k*phi(n) )*m^1
Since m^( k*phi(n) ) = m^phi(n) * m^phi(n) * m^phi(n) ... (k times)
and m^phi(n) = 1 (mod n), then m^( k*phi(n) ) = 1 (mod n) as well.
Therefore,
m^ed = m^( k*phi(n) )*m^1 = 1 * m = m (mod n).

Given (m^e) % n, it's hard to compute m unless you know phi(n) (in which case you can calculate d). Computing phi(n) is hard unless you know the factorization of n. To ensure that factoring n is hard, we make it the product of 2 large random primes.

Signing is just encryption with the private exponent (what we normally consider decryption). The receiver can “decrypt” the signature with the public key to and verify that it matches the document. Since only the owner of the key knows d, only she can sign documents.

Calculating an RSA keypair: e is conventionally set to 65537 (as long as it is relatively prime to phi(n) ), so we just need to compute d and n. As we mentioned, n should be selected as the product of two large primes, p and q. To compute d, recall that it must be chosen such that ed = 1 ( mod phi(n) ). But this just means that d is e's multiplicative inverse modulo phi(n). phi(n) is just (p-1)(q-1) since n only has two factors, p and q. We can use the extended Euclidian algorithm to compute modular inverses.

Generating primes: For the purposes of this lab, you are free to use any available resource for generating your primes. OpenSSL provides a way to generate primes, and many programming languages (such as Java) have ways of generating large primes. This should be familiar to you from the Diffie-Hellman lab.

There are several tests which are used to find large prime numbers. Most of them are probabilistic; they'll tell you if a number is certainly composite, but can't tell for sure whether a number is prime. The Miller-Rabin test is probably the most respected of the probabilistic algorithms. OpenSSL uses Miller-Rabin primality testing to generate it's primes. Computing multiplicative inverses: The extended Euclidian algorithm is often used to compute multiplicative inverses modulo some number. In this lab you will implement it to find d. Remember that the method for computing the gcd by hand is somewhat different than what you will want to do on the computer. The Wikipedia page has pseudocode which may be useful.

Requirements

Restrictions: You may use the language of your choice for this lab. You may use a bignum library as in the Diffie-Hellman lab. You may not use any built-in modular exponentiation, multiplicative inverse, Euclid's algorithm, etc., but you may use code to help you generate your prime numbers p and q.

  • Generate 2 512-bit primes p and q. Ensure that their high order bit is set. Verify that (p-1)(q-1) is relatively prime to 65537 (which we will be using for e). If it isn't, choose new p and q values.
  • Using n=pq and e=65537, calculate the secret exponent d, such that ed=1 ( mod phi(n) ).
  • Verify that for numbers m less than n, ( (m^e%n)^d )%n == m.

Passoff

  1. Passoff your code using the autograder.
  2. Zip your source code and submit it as part of this project using Learning Suite..
cs-465/project-5-rsa.txt · Last modified: 2016/09/26 12:33 by sethmj88
Back to top
CC Attribution-Share Alike 4.0 International
chimeric.de = chi`s home Valid CSS Driven by DokuWiki do yourself a favour and use a real browser - get firefox!! Recent changes RSS feed Valid XHTML 1.0