Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
9answers
3k 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 ...
13
votes
20answers
5k 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 ...
12
votes
10answers
2k 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 ...
11
votes
5answers
24k 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 0 to 4, every time ...
7
votes
5answers
242 views

How to generate Bad Random Numbers

I'm sure the opposite has been asked many times but I couldn't find any answers on how to generate bad random numbers. I want to write a small program for cluster analysis and want to generate some ...
7
votes
2answers
278 views

Is there “good” PRNG generating values without hidden state?

I need some good pseudo random number generator that can be computed like a pure function from its previous output without any state hiding. Under "good" I mean: I must be able to parametrize ...
6
votes
4answers
7k views

Random Number Generator in CUDA

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 I've spent ...
6
votes
6answers
2k 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
3answers
197 views

An RNG faster than /dev/random but cryptographically useful?

I've started some work of which requires some quality random bytes, such as 32 at a time for an initialising vector for certain cryptographic applications. My issue is, this may be called upon ...
4
votes
4answers
104 views

What (else) is wrong with using time as a seed for random number generation?

I understand that time is an insecure seed for random number generation because it effectively reduces the size of the seed space. But say I don't care about security. For example, say I'm doing a ...
4
votes
2answers
100 views

How (if at all) does a predictable random number generator get more secure after SHA-1ing its output?

This article states that Despite the fact that the Mersenne Twister is an extremely good pseudo-random number generator, it is not cryptographically secure by itself for a very simple reason. It ...
4
votes
1answer
134 views

What platforms offer SystemRandom?

Python's random.SystemRandom provides cryptographic-quality pseudorandom numbers. What platforms is it supported on? Most importantly, are there any platforms that it is not supported on, and if so, ...
4
votes
2answers
180 views

Has your pseudo-random number generator (PRNG) ever not been random enough?

Have you ever written simulations or randomized algorithms where you've run into trouble because of the quality of the (pseudo)-random numbers you used? What was happening? How did you detect / ...
4
votes
2answers
358 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. ...
4
votes
5answers
767 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 ...
4
votes
2answers
584 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 ...
4
votes
6answers
329 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, ...
3
votes
1answer
58 views

How to use contract-out in Racket

I have written a complimentary-multiply-with-carry PRNG in Racket. I want to use provide to restrict access only to certain functions within my library, and to impose contracts on them. Using the ...
3
votes
3answers
131 views

Getting a random real number in a certain range using WELL512

I'm using the WELL512 pseudorandom number generator function described in this paper. The function returns a random unsigned long value. How do I use this return value to produce a random real number ...
3
votes
3answers
182 views

Pseudo-random number generator for cluster environment

How can I generate independent pseudo-random numbers on a cluster, for Monte Carlo simulation for example? I can have many compute nodes (e.g. 100), and I need to generate millions of numbers on each ...
3
votes
2answers
196 views

Generate a random number which is greater than a specific number

In Advanced Bash-Scripting Guide Chaper 9.3. $RANDOM: generate random integer It illustrates how to generate a random number greater than a specific number: FLOOR=200 number=0 #initialize while [ ...
3
votes
5answers
1k 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
3answers
276 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
2answers
283 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
8answers
156 views

What is a possible way to bias a random number generator?

I built a word generator, it picks a length and then randomly picks letters of the alphabet to make up words. The program works but 99% of the output is rubbish as it is not observing the constructs ...
2
votes
4answers
178 views

Would randomising the seed create a more random number?

I have three questions about RNG. The first is what data is available to use as a seed. I have always used the time but there must be other easily available seeds. What easily available seeds are ...
2
votes
3answers
277 views

C++ versus Java performance [closed]

Say theoretically you just generate random numbers [using standard libraries] in as many threads as you can [bound by hardware]. How fast would C++ over Java? no disk i/o, memory or gc. Just pure ...
2
votes
5answers
868 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
268 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
6answers
936 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
1answer
61 views

Trying to write an invertible PRNG of 8 bits, not a cipher

I'm trying to build a PRNG of bytes where I can take a set of bytes (say, 10 or 15 bytes) and return a list of seeds that would yield that list of bytes. I'm not concerned about cryptography, but it ...
1
vote
0answers
21 views

How would I get the Fortuna generator (the one from the gnu classpath) to work right?

For some reason, no matter what code I try, this code always outputs a Exception in thread "main" java.lang.IllegalStateException: generator not seeded error. I have included my test code at the ...
1
vote
3answers
39 views

Extracting initial seed value of a PRNG?

I recently read that you can predict the outcomes of a PRNG if you: Know what algorithm is being used. Have consecutive data points. Is it possible to figure out the seed used for a PRNG from only ...
1
vote
4answers
966 views

JavaScript pseudo-random sequence generator

I need to generate a deterministic (i.e. repeatable) sequence of pseudo-random numbers given an initial seed and select the nth item from that sequence. If JavaScript's random function was seedable, ...
1
vote
1answer
61 views

How to generate a list of shuffled integers between 2 numbers?

I want to create a shuffled set of integers such that: Given the same seed, the shuffle will be the same every time As I iterate through, every number in the shuffled set will be used exactly once ...
1
vote
7answers
291 views

How to write you own “random” number algorithm?

I need to be able to write my own pseudo random number generator. no with no libraries. I've been trying but I didn't get any success.
1
vote
4answers
403 views

Java Random seed

I need to test out a Java program 20 times and need to set the random seed so that the tests can be repeated. If I were to set the initial seed as 0 and then increment by 1 at each run (i.e. 1,2,3 ...
1
vote
4answers
217 views

How to test PRNG?

Lately I implemented a MersenneTwister for 64-bit integer (or long). Is there a guide or examples of how to test PRNG so that I may know whether or not my implementation is good-enough solution. I'm ...
1
vote
4answers
604 views

Reversible pseudo-random sequence generator

I would like some sort of method to create a fairly long sequence of random numbers that I can flip through backwards and forwards. Like a machine with "next" and "previous" buttons, that will give ...
1
vote
0answers
87 views

functional correctness of wiki mersenne twister psuedocode

can anyone tell me if the mersenne twister psuedocode on this page is the same as the code here? if they are not the same, which one is correct?
1
vote
4answers
271 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
840 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 ...
1
vote
7answers
275 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
0answers
14 views

How to find the exact period of Blum-Blum-Shub random number generator

I've read the original paper and some related ones. But the best I can find about the period of BBS is that the period is a factor of λ(λ(M)), where λ is Carmichael function and M is the product of ...
0
votes
3answers
118 views

Random Number Generator Algorithm

What algorithm is used by banks for generating random numbers like(credit cards/debit cards numbers) ? Suppose i maintain all the numbers in DB and If i try the below approach, Generate a random ...
0
votes
2answers
57 views

Why is SecureRandom in Java called CS PRNG and not TRNG?

SecureRandom internally makes use of other algorithms , like in case of Linux , makes use of NativePRNG which in turn makes use of /dev/urandom . But /dev/urandom is actually using interrupts events ...
0
votes
2answers
35 views

Put in a string the output of autoseed PNRG in Crypto++

I'm using Cryptopp to generate a random string. This is the code: const unsigned int BLOCKSIZE = 16 * 8; byte pcbScratch[ BLOCKSIZE ]; // Construction // Using a ANSI approved Cipher ...
0
votes
1answer
91 views

Codes for scratch cards

I'll try to be simple, clear and direct. My problem is the following: I have a project where I need to generate codes for scratch cards. The scrath cards are printed like the ones you use for charging ...
0
votes
1answer
37 views

PRNG uniform distribution

Can someone please help me wrap my head around this problem Given X number of servers that generate some message and a simulation duration of T seconds, at what time intervals should each server ...
0
votes
2answers
71 views

Recommendation Needed for a PRNG

I'm looking for a Pseudo-Random Number Generation algorithm capable of producing a random 128-/256-bit number. Security and cryptographic integrity are not important; simplicity and performance are ...

1 2