Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Generating REALLY big primes

I'm playing around and trying to write an implementation of RSA. The problem is that I'm stuck on generating the massive prime numbers that are involved in generating a key pair. Could someone point me to a fast way to generate huge primes/probable primes?

like image 254
nonpolynomial237 Avatar asked Jul 18 '09 00:07

nonpolynomial237


1 Answers

You don't generate prime numbers exactly. You generate a large odd number randomly, then test if that number is prime, if not generate another one randomly. There are some laws of prime numbers that basically state that your odds of "hitting" a prime via random tries is (2/ln n)

For example, if you want a 512-bit random prime number, you will find one in 2/(512*ln(2)) So roughly 1 out of every 177 of the numbers you try will be prime.

There are multiple ways to test if a number is prime, one good one is the "Miller-Rabin test" as stated in another answer to this question.

Also, OpenSSL has a nice utility to test for primes:

$ openssl prime 119054759245460753
1A6F7AC39A53511 is not prime
like image 158
mox1 Avatar answered Oct 15 '22 15:10

mox1