1
vote
4answers
72 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 …
1
vote
3answers
117 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 known that we need …
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. …
1
vote
5answers
340 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 sequence. I would also …
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 …
2
votes
5answers
367 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
880 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, …
5
votes
6answers
468 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 …
3
votes
2answers
245 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 …
0
votes
7answers
970 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
168 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, releasing it onto the table …
0
votes
1answer
136 views
Psuedo-Random-Number-Generator from a computable normal number
Isn't it easily possible to construct a PRNG in such a fashion? Why is it not done?
That is, as far as I know we could simply have a PRNG that takes a seed n. When you ask for a random bit, it takes …
2
votes
2answers
150 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 …
