I'm looking for a way to generate large random numbers on the order of 2^64 in C... (100000000 - 999999999), to use in a public key encryption algorithm (as p and q)

I do not want to generate number smaller than 2^64 (i.e. smaller than 100000000).

Does anyone know of anything that could help me to do this?

Thank you very much.

link|improve this question

3  
2^64 is much greater than 999999999. – undur_gongor Oct 27 '11 at 21:16
feedback

5 Answers

up vote 4 down vote accepted

random() returns a long which on a 64bit system should be 64 bits. If you are on a 32bit system you could do the following:

#include <inttypes.h>

uint64_t num;

/* add code to seed random number generator */

num = rand();
num = (num << 32) | rand();

// enforce limits of value between 100000000 and 999999999
num = (num % (999999999 - 100000000)) + 100000000;

Alternatively on a NIX system you could read /dev/random into your buffer:

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <inttypes.h>   

int fd;
uint64_t num; 
if ((fd = open("/dev/random", O_RDONLY) == -1)
{
    /* handle error */
};
read(fd, &num, 8);
close(fd);

// enforce limits of value between 100000000 and 999999999
num = (num % (999999999 - 100000000)) + 100000000;

A

link|improve this answer
2  
rand() is limited by RAND_MAX which not necessary 2^32. And, you still need something to pass to srand(). /dev/random functionality is also available on other platforms. – Banthar Oct 27 '11 at 19:21
This does not ensure the requirement "I do not want to generate number smaller than ... 100000000" is met. – undur_gongor Oct 27 '11 at 21:14
Add the line num = (num % (999999999 - 100000000)) + 100000000; to generate a random number of the lower limit of 100000000 and the upper limit of 999999999. – David M. Syzdek Oct 27 '11 at 21:24
1  
Better, but now the numbers above 805933941 (2^64 -1 mod 899999999) are slightly less probable than the numbers below ;-) – undur_gongor Oct 27 '11 at 21:34
feedback

You're looking for a cryptographic-strength PRNG, like openssl/rand: http://www.openssl.org/docs/crypto/rand.html

link|improve this answer
1  
Or BCryptGenRandom on Windows Vista and higher. – Alex Oct 27 '11 at 20:30
1  
+1: using rand() for this is a security hole (predicting the output of rand() isn't terribly challenging) – Frank Farmer Oct 27 '11 at 21:34
feedback

You could combine two 4-byte random integers to produce an 8-byte one:

#include <stdint.h>
...
uint64_t random = 
  (((uint64_t) rand() <<  0) & 0x00000000FFFFFFFFull) | 
  (((uint64_t) rand() << 32) & 0xFFFFFFFF00000000ull);

Since rand returns int, and sizeof(int) >= 4 on almost any modern platform, this code should work. I've added the << 0 to make the intent more explicit.

The masking with 0x00000000FFFFFFFF and 0xFFFFFFFF00000000 is to prevent overlapping of the bits in the two numbers in case sizeof(int) > 4.

EDIT

Since @Banthar commented that RAND_MAX is not necessarily 2 ^ 32, and I think it is guaranteed to be at least 2 ^ 16, you could combine four 2-byte numbers just to be sure:

uint64_t random = 
  (((uint64_t) rand() <<  0) & 0x000000000000FFFFull) | 
  (((uint64_t) rand() << 16) & 0x00000000FFFF0000ull) | 
  (((uint64_t) rand() << 32) & 0x0000FFFF00000000ull) |
  (((uint64_t) rand() << 48) & 0xFFFF000000000000ull);
link|improve this answer
1  
If you use ^ to combine the numbers instead of |, you don't need to worry about the masking. – caf Oct 27 '11 at 21:21
feedback

I know I'll probably get b____slapped by OliCharlesworth, but use rand() with a scale and offset. It's in stdlib.h In order to cover the whole range you should add that to another smaller rand() to fill in the gaps in the mapping.

link|improve this answer
feedback

You can make a large number out of smaller numbers. For instance, with something like L = (2^ n)*A + B where ^ denote exponentiation and n is some constant (e.g. 32).

So you can make a large random number of of smaller random numbers.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.