How do I quickly generate a random prime number, that is for sure 1024 bit long?
|
Alternatively, use a library function that generates primes for you. |
|||||||||||||||||
|
|
Use a library function, such as OpenSSL. There's no need to write this yourself. |
|||
|
|
|
1024 is a lot. Are you sure a probabilistic prime won't do? Probabilistic prime generator is part of JDK |
|||||||||||||||
|
|
To trade memory for speed you could just generate them and store them in a list and then randomly pick one. Edit: Naturally you can't generate them all so the best you could achieve is pseudo randomness at a high memory cost. Also this isn't good if you want it for security. |
|||||||||||||
|