1
vote
4answers
68 views
Pseudorandom Sequence Generator not just a number generator.
I need an algorithm that pretty much will turn a unix timestamp into a suitably random number, so that if I "play back" the timestamps I get the same random numbers.
And here's wh …
1
vote
3answers
114 views
Random access encryption with AES In Counter mode using Fortuna PRNG:
I'm building file-encryption based on AES that have to be able to work in random-access mode (accesing any part of the file). AES in Counter for example can be used, but it is well …
2
votes
4answers
801 views
Random Number Generator in CUDA
Hey people
I've struggled with this all day, I am trying to get a random number generator for threads in my CUDA code. I have looked through all forums and yes this topic comes u …
5
votes
6answers
454 views
Computing (a*b) mod c quickly for c=2^N +-1
In 32 bit integer math, basic math operations of add and multiply are computed implicitly mod 2^32, meaning your results will be the lowest order bits of the add or multiply.
If y …
4
votes
2answers
141 views
programatically using Hardware Random number generator
I'm working on a desktop application and would love to use any hardware random number generators that happen to be available, though I dont want the user to have to do any confusin …
7
votes
20answers
2k views
True random number generator
Sorry for this not being a "real" question, but Sometime back i remember seeing a post here about randomizing a randomizer randomly to generate truly random numbers, not just pseud …
8
votes
9answers
923 views
What Type of Random Number Generator is Used in the Gaming Industry?
Given the extremely high requirements for unpredictability to prevent casinos from going bankrupt, what random number generation algorithm and seeding scheme is typically used in d …
8
votes
10answers
986 views
Do stateless random number generators exist?
Is there a difference between generating multiple numbers using a single random number generator (RNG) versus generating one number per generator and discarding it? Do both impleme …
3
votes
4answers
269 views
Issues with seeding a pseudo-random number generator more than once?
I've seen quite a few recommendations for not seeding pseudo-random number generators more than once per execution, but never accompanied by a thorough explanation. Of course, it i …
1
vote
5answers
330 views
Multiple random number generator states in c/Unix
I'm using srandom() and random() to generate random numbers in c on a Unix system. I would like to have multiple RNGs. Each one, given the same seed, should output the same seque …
2
votes
5answers
355 views
Inverse of A*X MOD (2^N)-1
Given a function y = f(A,X):
unsigned long F(unsigned long A, unsigned long x) {
return ((unsigned long long)A*X)%4294967295;
}
How would I find the inverse function x = …
3
votes
6answers
260 views
Pitfalls of cryptographic code
I'm modifying existing security code. The specifications are pretty clear, there is example code, but I'm no cryptographic expert. In fact, the example code has a disclaimer sayi …
0
votes
7answers
952 views
How can I generate unique random numbers in PHP?
I am working on a MCQ module and I need to fetch random questions from my database. The problem is that I seem to get duplicates.
2
votes
4answers
121 views
Does any software exist for building entropy pools from user input?
It'd be nice to be able, for some purposes, to bypass any sort of algorithmically generated random numbers in favor of natural input---say, dice rolls. Cryptographic key generation …
1
vote
5answers
2k views
How do I generate random numbers on the iPhone?
What is the best way to generate random numbers using Objective C on the iPhone?
If I use (int)((double) rand() / ((double)(RAND_MAX) + (double) 1) * 5.0) to generate a number from …
