active questions tagged prng - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T23:53:03Zhttp://stackoverflow.com/feeds/tag/prnghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/837955/random-number-generator-in-cuda2Random Number Generator in CUDA alifeofzen2009-05-08T02:10:07Z2009-11-21T16:56:49Z
<p>Hey people</p>
<p>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 hours trying to unravel all sorts of codes to no avail. If anyone knows of a simple method, probably a <strong>device</strong> kernel that can be called to returns a random float between 0 and 1, or an integer that I can transform I would be most grateful.</p>
<p>Again, I hope to use the random number in the kernel, just like rand() for instance.</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/763137/computing-ab-mod-c-quickly-for-c2n-15Computing (a*b) mod c quickly for c=2^N +-1 Arno Setagaya2009-04-18T08:29:45Z2009-11-15T01:49:28Z
<p>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.</p>
<p>If you want to compute the result with a different modulus, you certainly could use any number of BigInt classes in different languages. And for values a,b,c < 2^32 you could compute the intermediate values in 64 bit long ints and use built in % operators to reduce to the right answe</p>
<p>But I've been told that there are special tricks for efficiently computing a*b mod C when C is of the form (2^N)-1 or (2^N)+1, that don't use 64 bit math or a BigInt library and are quite efficient, more so than an arbitrary modulus evaluation, and also properly compute cases which would normally overflow a 32 bit int if you were including the intermediate multiplication.</p>
<p>Unfortunately, despite hearing that such special cases have a fast evaluation method, I haven't actually found a description of the method. "Isn't that in Knuth?" "Isn't that somewhere on Wikipedia?" are the mumblings I've heard.</p>
<p>It apparently is a common technique in random number generators which are doing multiplies of a*b mod 2147483647, since 2147483647 is a prime number equal to 2^31 -1. </p>
<p>So I'll ask the experts. What's this clever special case multiply-with-mod method that I can't find any discussion of?</p>
http://stackoverflow.com/questions/1692003/pseudorandom-sequence-generator-not-just-a-number-generator1Pseudorandom Sequence Generator not just a number generator.Sam Washburn2009-11-07T04:35:13Z2009-11-07T06:45:57Z
<p>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.</p>
<p>And here's what I mean by suitably:</p>
<ol>
<li>Most humans will not detect a loop or pattern in the random numbers.</li>
<li>It need not be cryptographically secure.</li>
<li>All numbers must be capable of being generated. (I've found that LFSR don't do this)</li>
<li>The numbers are 32 bit integers</li>
</ol>
<p>And I would like it to be fairly fast.</p>
<p>So far my idea is to just seed a PRNG over and over, but I'm not sure if that's the best way to handle this.</p>
<p>Any thoughts and ideas will be much appreciated.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1459360/random-access-encryption-with-aes-in-counter-mode-using-fortuna-prng1Random access encryption with AES In Counter mode using Fortuna PRNG:Maksee2009-09-22T10:48:02Z2009-09-28T19:55:41Z
<p>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 an unique sequence never used twice.
Is it ok to use a simplified Fortuna PRNG in this case (encrypting a counter with a randomly chosen unique key specific to the particular file)? Are there weak points in this approach? </p>
<p>So encryption/decryption can look like this</p>
<p>Encryption of a block at Offset:</p>
<pre><code>rndsubseq = AESEnc(Offset, FileUniqueKey)
xoredplaintext = plaintext xor rndsubseq
ciphertext = AESEnc(xoredplaintext, PasswordBasedKey)
</code></pre>
<p>Decryption of a block at Offset:</p>
<pre><code>rndsubseq = AESEnc(Offset, FileUniqueKey)
xoredplaintext = AESDec(ciphertext, PasswordBasedKey)
plaintext = xoredplaintext xor rndsubseq
</code></pre>
<p>One observation. I came to the idea used in Fortuna by myself and surely discovered later that it is already invented. But as I read everywhere the key point about it is security, but there's another good point: it is a great random-access pseudo random numbers generator so to speak (in simplified form). So the PRNG that not only produces very good sequence (I tested it with Ent and Die Hard) but also allow to access any sub-sequence if you know the step number. So is it generally ok to use Fortuna as a "Random-access" PRNG in security applications?</p>
<p>EDIT:</p>
<p>In other words, what I suggest is to use Fortuna PRNG as a tweak to form a tweakable AES Cipher with random-access ability. I read the work of Liskov, Rivest and Wagner, but could not understand what was the main difference between a cipher in a mode of operation and a tweakable cipher. They said they suggested to bring this approach from high level inside the cipher itself, but for example in my case xoring the plain text with the tweak, is this a tweak or not?</p>
http://stackoverflow.com/questions/426821/what-type-of-random-number-generator-is-used-in-the-gaming-industry8What Type of Random Number Generator is Used in the Gaming Industry?dsimcha2009-01-09T02:09:51Z2009-08-06T13:24:31Z
<p>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 machines, video poker machines, etc.?</p>
<p>EDIT: Related questions:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/203382/do-stateless-random-number-generators-exist">http://stackoverflow.com/questions/203382/do-stateless-random-number-generators-exist</a></li>
<li><a href="http://stackoverflow.com/questions/37702/true-random-number-generator">http://stackoverflow.com/questions/37702/true-random-number-generator</a></li>
<li><a href="http://stackoverflow.com/questions/300854/alternative-entropy-sources">http://stackoverflow.com/questions/300854/alternative-entropy-sources</a></li>
</ul>
http://stackoverflow.com/questions/1235556/programatically-using-hardware-random-number-generator4programatically using Hardware Random number generatorArthur Ulfeldt2009-08-05T20:29:31Z2009-08-05T20:44:33Z
<p>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. its Java/Clojure based so something in the java world would be nice though I'm willing to work with just about anything. Know of any programs that do this well? are they cross platform?</p>
http://stackoverflow.com/questions/497156/pitfalls-of-cryptographic-code3Pitfalls of cryptographic codeAdam Davis2009-01-30T20:36:47Z2009-08-05T18:28:01Z
<p>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, "Don't use this code verbatim."</p>
<p>While auditing the code I'm to modify (which is supposedly feature complete) I ran across this little gem which is used in generating the challenge:</p>
<pre><code>static uint16 randomSeed;
...
uint16 GetRandomValue(void)
{
return randomSeed++;/* This is not a good example of very random generation :o) */
}
</code></pre>
<p>Of course, the first thing I immediately did was pass it around the office so we could all get a laugh. </p>
<p>The programmer who produced this code knew it wasn't a good algorithm (as indicated by the comment), but I don't think they understood the security implications. They didn't even bother to call it in the main loop so it would at least turn into a free running counter - still not ideal, but worlds beyond this.</p>
<p>However, I know that the code I produce is going to similarly cause a real security guru to chuckle or quake.</p>
<ul>
<li>What are the most common security problems, specific to cryptography, that I need to understand?</li>
<li>What are some good resources that will give me suitable knowledge about what I should know beyond common mistakes?</li>
</ul>
<p>-Adam</p>
http://stackoverflow.com/questions/816595/does-any-software-exist-for-building-entropy-pools-from-user-input2Does any software exist for building entropy pools from user input?Steven Dee2009-05-03T08:35:40Z2009-07-15T06:34:21Z
<p>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, strikes me as a situation where little enough random data is needed, and the requirement that the data be truly random is high enough, that this might be a feasible and desirable thing to do.</p>
<p>So what I'd like to know, before I go and get my hands dirty, is this: does any software exist for building an entropy pool directly from random digit input? Note that it's not quite enough to simply convert things from radix r to radix 2; since, for instance, 3 and 2 are relatively prime, it's not entirely straightforward to turn a radix-3 (or radix-6) number into binary digits while holding onto maximal entropy in the original input.</p>
http://stackoverflow.com/questions/1063074/multiple-random-number-generator-states-in-c-unix1Multiple random number generator states in c/UnixEyal2009-06-30T11:00:50Z2009-06-30T14:37:04Z
<p>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 like to save and restore the state of each one. Here's a pseudocode example:</p>
<pre><code>R1 = new_rng(5); //5 is the seed
R2 = new rng(5); //5 is the seed here, too.
a = R1.random();
b = R1.random();
d = R2.random(); //a == d
s1 = R2.get_state(); //save the state of R2
e = R2.random(); //b == e
R2.set_state(s1); //restore the state of R2
f = R2.random(); //b == f
</code></pre>
<p>How do I do this? Sometimes the RNGs will fork into different threads and I need to replicate the state of the RNG when creating a new thread, too.</p>
http://stackoverflow.com/questions/976993/issues-with-seeding-a-pseudo-random-number-generator-more-than-once3Issues with seeding a pseudo-random number generator more than once?mtah2009-06-10T17:20:16Z2009-06-10T18:28:30Z
<p>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 the following (C/C++) example is not a good idea:</p>
<pre><code>int get_rand() {
srand(time(NULL));
return rand();
}
</code></pre>
<p>since calling <code>get_rand</code> several times per second produces repeated results. </p>
<p><em>But wouldn't the following example still be an acceptable solution?</em></p>
<p><strong>MyRand.h</strong></p>
<pre><code>#ifndef MY_RAND_H
#define MY_RAND_H
class MyRand
{
public:
MyRand();
int get_rand() const;
private:
static unsigned int seed_base;
};
#endif
</code></pre>
<p><strong>MyRand.cpp</strong></p>
<pre><code>#include <ctime>
#include <cstdlib>
#include "MyRand.h"
unsigned int MyRand::seed_base = static_cast<unsigned int>(time(NULL));
MyRand::MyRand()
{
srand(seed_base++);
}
int MyRand::get_rand() const
{
return rand();
}
</code></pre>
<p><strong>main.cpp</strong></p>
<pre><code>#include <iostream>
#include "MyRand.h"
int main(int argc, char *argv[])
{
for (int i = 0; i < 100; i++)
{
MyRand r;
std::cout << r.get_rand() << " ";
}
}
</code></pre>
<p>i.e. even though <code>MyRand</code>:s constructor is called several times in rapid succession, each call to <code>srand</code> has a different parameter. Obviously, this is not thread-safe, but then again neither is <code>rand</code>.</p>
http://stackoverflow.com/questions/894652/inverse-of-ax-mod-2n-12Inverse of A*X MOD (2^N)-1 caffiend2009-05-21T19:23:29Z2009-06-02T03:10:38Z
<p>Given a function y = f(A,X): </p>
<pre><code>unsigned long F(unsigned long A, unsigned long x) {
return ((unsigned long long)A*X)%4294967295;
}
</code></pre>
<p>How would I find the inverse function x = g(A,y) such that x = g(A, f(A,x)) for all values of 'x'?</p>
<p>If f() isn't invertible for all values of 'x', what's the closest to an inverse? </p>
<p>(F is an obsolete PRNG, and I'm trying to understand how one inverts such a function).</p>
<ul>
<li>Updated<br />
If A is relatively prime to (2^N)-1, then g(A,Y) is just f(A-1, y).<br />
If A isn't relatively prime, then the range of y is constrained...
Does g( ) still exist if restricted to that range?</li>
</ul>
http://stackoverflow.com/questions/689889/i-need-a-portable-consistent-pseudorandom-number-generator3I need a portable, consistent pseudorandom number generatorChas. Owens2009-03-27T14:07:28Z2009-03-28T02:57:51Z
<p>I am writing a <a href="http://enfranchisedmind.com/blog/posts/the-kid-sister-crypto-manifesto/" rel="nofollow">kid sister encryption</a> 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 would be nice, but not necessary, for the PRNG had a period longer than 2<sup>30</sup>.</p>
<p>I am currently using a 32 bit <a href="http://en.wikipedia.org/wiki/Xorshift" rel="nofollow">Xorshift</a>:</p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
{
use integer; #use integer math
my $x = 123456789;
my $y = 362436069;
my $w = 88675123;
my $z = 521288629;
sub set_random_seed {
$w = shift;
}
sub random {
my $t = $x ^ ($x << 11);
$x = $y;
$y = $z;
$z = $w;
my $rand = $w = ($w ^ ($w >> 19)) ^ ($t ^ ($t >> 8));
return $rand % 256; #scale it back to a byte at a time
}
}
set_random_seed(5);
print map { random(), "\n" } 1 .. 10;
</code></pre>
<p>But I am worried because I don't really understand how it works. For example, the original source did not have an ability to set the seed, so I added one, but I don't know if I chose the correct variable for the seed.</p>
<p>So, all of that boils down to</p>
<ol>
<li>Do you know of a module on CPAN that fits my needs?</li>
<li>If not, do you know of an algorithm that fits my needs?</li>
</ol>
http://stackoverflow.com/questions/678013/what-is-a-good-hashing-algorithm-for-seeding-a-prng-with-a-string3What is a good hashing algorithm for seeding a prng with a string?hristo2009-03-24T15:45:53Z2009-03-24T16:36:36Z
<p>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 Park-Miller-Carta LCG or a Mersenne-Twister.</p>
<p>I have looked into FNV1 and FNV1a, but they provide very close values for similar strings differing in their last character; I would like to have a low collision hash that radically changes upon minimal modifications on the input string. Performance is not an issue.</p>
<p>My current approach consists in a dirty LCG that uses character codes and a prime number as multipliers:</p>
<pre><code>a = 524287;
for ( i = 0; i < n; i ++ )
a = ( a * string.charCodeAt ( i ) * 16807 + 524287 ) % 2147483647;
</code></pre>
<p>Please let me know of any better alternatives.</p>
http://stackoverflow.com/questions/674113/how-can-i-generate-unique-random-numbers-in-php0How can I generate unique random numbers in PHP?PROFESSOR2009-03-23T16:32:49Z2009-03-23T19:27:00Z
<p>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.</p>
http://stackoverflow.com/questions/620921/is-it-possible-to-generate-random-numbers-through-physical-process-simulation1Is it possible to generate random numbers through physical process simulation?treant2009-03-06T23:55:50Z2009-03-07T01:45:02Z
<p>Is it possible to generate random numbers through physical process simulation?</p>
<p>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 and recording which side ends up "up"...) will that produce a "random" number or would I just have a complex simulation which really accomplishes nothing.</p>
http://stackoverflow.com/questions/37702/true-random-number-generator7True random number generator goldenmean2008-09-01T10:25:46Z2009-03-07T00:17:10Z
<p>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 it if i search for it.</p>
<p>Does anybody know about that article?</p>
http://stackoverflow.com/questions/203382/do-stateless-random-number-generators-exist8Do stateless random number generators exist?Gili2008-10-15T01:02:45Z2009-03-07T00:15:53Z
<p>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 numbers which are equally random? Is there a difference between the normal RNGs and the secure RNGs for this?</p>
<p>I have a web application that is supposed to generate a list of random numbers on behalf of clients. That is, the numbers should appear to be random from each client's point of view. Does this mean I need retain a separate random RNG per client session? Or can I share a single RNG across all sessions? Or can I create and discard a RNG on a per-request basis?</p>
<p><strong>UPDATE</strong>: This question is related to <a href="http://stackoverflow.com/questions/471157/is-a-subset-of-a-random-sequence-also-random">http://stackoverflow.com/questions/471157/is-a-subset-of-a-random-sequence-also-random</a></p>
http://stackoverflow.com/questions/617449/psuedo-random-number-generator-from-a-computable-normal-number0Psuedo-Random-Number-Generator from a computable normal numberDevin Jeanpierre2009-03-06T01:37:11Z2009-03-06T01:57:28Z
<p>Isn't it easily possible to construct a PRNG in such a fashion? Why is it not done?</p>
<p>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 the nth digit of the binary expansion of the computable normal number, and increments n.</p>
<p>My first thought was that perhaps we hadn't found a computable normal number, but we <a href="http://www.sciencedirect.com/science?%5Fob=ArticleURL&%5Fudi=B6V1G-44NM184-1F&%5Fuser=994540&%5Frdoc=1&%5Ffmt=&%5Forig=search&%5Fsort=d&view=c&%5Facct=C000050024&%5Fversion=1&%5FurlVersion=0&%5Fuserid=994540&md5=374f53e97045c282254c5968eaba2f98" rel="nofollow">have</a>. The remaining thought is that there is a good reason not to-- either there's some property of PRNGs that I'm not familiar with that such a method would not have, or it would be impractical somehow, or is otherwise outstripped by other methods.</p>
http://stackoverflow.com/questions/616434/do-prng-need-to-be-thread-safe2Do PRNG need to be thread safe?BCS2009-03-05T20:13:25Z2009-03-05T22:13:44Z
<p>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 <a href="http://en.wikipedia.org/wiki/Pseudorandom%5Fnumber%5Fgenerator" rel="nofollow">PRNGs</a> when those error's primary effects are unpredictable results and that is the point of a PRNG?</p>
<p><hr /></p>
<p><em>Edit:</em> are there any PRNG that wouldn't suffer under race conditions and data corruption?</p>
http://stackoverflow.com/questions/512548/create-programmatic-colour-picker2Create programmatic colour pickerj pimmel2009-02-04T18:01:03Z2009-02-05T18:14:46Z
<p>How would one create a <strong><em>deterministic</em></strong> Javascript HTML colour picker which given arguments of how many colours are desired returns an array of HTML hex colour codes, ie:</p>
<pre><code> function createColours(numColours) {
return [/* colours array of size numColours */]
}
</code></pre>
<p>The colours themselves can be <em>chosen / generated</em> randomly, but the method must guarantee that colours chosen are always the same between calls and always in the same order in series.</p>
<p>For example, if the series of colours decided on by the function started with the following 8:</p>
<pre><code> "#47092E", "#CC2A43", "#00C66B", "#BC1300", "#667E00", "#795800", "#FFD245", "#6EFFAD", etc, etc
</code></pre>
<p>The function would behave with the following consistent responses across separate method invocations on the client</p>
<pre><code> ["#47092E", "#CC2A43"] == createColours(2);
["#47092E", "#CC2A43", "#00C66B", "#BC1300", "#667E00"] == createColours(5);
["#47092E"] == createColours(1);
["#47092E", "#CC2A43", "#00C66B", "#BC1300", "#667E00", "#795800", "#FFD245", "#6EFFAD", #and 49 others#] == createColours(57);
</code></pre>
<p><strong>Note</strong>: The colours are not defined as a variable in advance; the method might be asked for 345 colours, all of which it would be required to generate by whatever suitable means.</p>
<p>The problem to be solved is - <strong>first and foremost</strong> - how would you create a capability within the method to generate the n HEX colour values consistently the same each time also preserving the sequence</p>
http://stackoverflow.com/questions/510367/how-do-i-generate-random-numbers-on-the-iphone1How do I generate random numbers on the iPhone?emi1faber2009-02-04T07:12:12Z2009-02-04T16:44:35Z
<p>What is the best way to generate random numbers using Objective C on the iPhone?<br />
If I use <code>(int)((double) rand() / ((double)(RAND_MAX) + (double) 1) * 5.0)</code> to generate a number from 0 to 4, every time I start the program on the iPhone it generates the same numbers to start off with.</p>