2
votes
4answers
748 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
448 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 …
1
vote
4answers
62 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
112 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 …
8
votes
9answers
909 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 …
4
votes
2answers
140 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 …
3
votes
6answers
259 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 …
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
319 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 …
3
votes
4answers
266 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 …
2
votes
5answers
351 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
2answers
240 views
I need a portable, consistent pseudorandom number generator
I am writing a kid sister encryption function and I need a PRNG that produces consistent results across OSes (so no floating point math, taking advantage of hardware, or system lev …
3
votes
3answers
104 views
What is a good hashing algorithm for seeding a prng with a string?
I am looking for a hashing algorithm that produces a 31/32 bit signed/unsigned integer as a digest for a utf8 string with the purpose of using the output for seeding a prng, such a …
0
votes
7answers
934 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.
1
vote
7answers
164 views
Is it possible to generate random numbers through physical process simulation?
Is it possible to generate random numbers through physical process simulation?
If I simulate the physical roll of a dice (i.e. you picking it up, shaking it in your hand, releasin …
