8
votes
9answers
939 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 devices like slot …
8
votes
10answers
994 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 implementations generate …
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 pseudo random. I dont see …
5
votes
6answers
466 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 you want to compute …
4
votes
2answers
144 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 confusing setup to use it. …
3
votes
4answers
275 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 is easy to see why …
3
votes
2answers
243 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 level software). It …
3
votes
3answers
107 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 as a …
3
votes
6answers
261 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 saying, in effect, …
2
votes
5answers
363 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 = g(A,y) such that x …
2
votes
4answers
868 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 up a fair bit but …
2
votes
4answers
123 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, for instance, …
2
votes
2answers
149 views
Do PRNG need to be thread safe?
As long as concurrent calls don't cause seg-v's or return the same value, what reasons are there for preventing race conditions and data corruption in PRNGs when those error's primary effects are …
2
votes
6answers
280 views
Create programmatic colour picker
How would one create a deterministic Javascript HTML colour picker which given arguments of how many colours are desired returns an array of HTML hex colour codes, ie:
function …
1
vote
4answers
70 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 what I mean by …
