active questions tagged random-number-generator+.net - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T06:33:09Zhttp://stackoverflow.com/feeds/tag/random-number-generator+.nethttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1257299/why-use-the-c-class-system-random-at-all-instead-of-system-security-cryptography6Why use the C# class System.Random at all instead of System.Security.Cryptography.RandomNumberGenerator?Lernkurve2009-08-10T21:25:54Z2009-10-25T09:09:53Z
<p>Why would anybody use the "standard" random number generator from <a href="http://msdn.microsoft.com/en-us/library/system.random.aspx" rel="nofollow">System.Random</a> at all instead of always using the cryptographically secure random number generator from <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.randomnumbergenerator.aspx" rel="nofollow">System.Security.Cryptography.RandomNumberGenerator</a> (or its subclasses because RandomNumberGenerator is abstract)?</p>
<p>Nate Lawson tells us in his Google Tech Talk presentation "<a href="http://www.youtube.com/watch?v=ySQl0NhW1J0" rel="nofollow">Crypto Strikes Back</a>" at minute 13:11 not to use the "standard" random number generators from Python, Java and C# and to instead use the cryptographically secure version.</p>
<p>I know the difference between the two versions of random number generators (see <a href="http://stackoverflow.com/questions/101337/what-is-the-difference-between-a-randomly-generated-number-and-secure-randomly-ge">question 101337</a>).</p>
<p>But what rationale is there to not always use the secure random number generator? Why use System.Random at all? Performance perhaps?</p>
http://stackoverflow.com/questions/1542911/obscure-vbmath-random-numbers-generator-behavior0Obscure VBMath random numbers generator behavior.kripto_ash2009-10-09T10:00:25Z2009-10-13T13:29:08Z
<p>Hi, </p>
<p>I want to repeat a random number sequence generated by a legacy software using the VBMath.Rnd and VBMath.Randomize functions in VB .NET</p>
<p>Reading on the documentation for those functions on <a href="http://msdn.microsoft.com/en-us/library/ht1sfkd6.aspx" rel="nofollow">MSDN</a> i found that you are supposed to "reset" the generator calling Rnd with a negative value if you want the same seed to give you the same result sequence each time.</p>
<p>But doing some tests... things didn't work as expected.</p>
<p>The legacy software does something like this at the start of the application on different executions:</p>
<pre><code>float[] rNums = new float[4];
VBMath.Randomize(154341.77394338892);
for (int index = 0; index < 4; index++)
{
rNums[index] = VBMath.Rnd();
}
</code></pre>
<p>And my code does something like this:</p>
<pre><code>VBMath.Rnd(-1);
VBMath.Randomize(154341.77394338892);
for (int index = 0; index < 4; index++)
{
Console.WriteLine("rNum[" + index + "] " + rNums[index] + " = " + VBMath.Rnd());
}
</code></pre>
<p>The results for this test are:</p>
<pre><code>rNum[0] 0,6918146 = 0,2605162
rNum[1] 0,5121228 = 0,4748411
rNum[2] 0,8309224 = 0,8112976
rNum[3] 0,972851 = 0,8011347
</code></pre>
<p>The sequence that i want to reproduce in the second code any number of times is the sequence generated from the hard coded initial state of the generator. That means the sequence you would get if you run the first code alone.</p>
<p>I can not change the first code.</p>
<p>Any idea on why the VBMath.Rnd and VBMath.Randomize functions arent working as expected?</p>
<p>Did i miss something?</p>
<p><hr /></p>
<h2>ANSWER</h2>
<p>Thee problem is that since the legacy code doesn't call Rnd with a negative value, the generator doesn't clear its state and the call to Rnd gets chained to the previous value of the seed (in this case, the hard-coded value). </p>
<p>To solve the problem and be able to repeat the process all over again without all the problems that would imply "reproducing" the initial state, i cloned the generator code and patched it so i could reproduce the same situation every time depending on a parameter.</p>
<p>I know.. its ugly.. but it solves my problem (Btw i also know that there are some rounding errors and that the generated values are not exact.. they differ in like the last digit or something) but i don't need exact precision. </p>
<p>The rounding error probably comes from my choice of language for the cloning of the algorithm. If someone could help out on how to get the exact same result (match the rounding errors) that would be nice.</p>
<p>The patched code follows.</p>
<pre><code>public sealed class RndGenerator
{
static int m_rndSeed = 0x50000;
// This is the value that the programmer sets the seed at ProjectData object
// initialization
const int CONSTANT_INIT_RNDSEED = 0x50000;
// Methods
private static float GetTimer()
{
DateTime now = DateTime.Now;
return (float)(((((60 * now.Hour) + now.Minute) * 60) + now.Second) + (((double)now.Millisecond) / 1000.0));
}
public static void Randomize()
{
float timer = GetTimer();
int rndSeed = m_rndSeed;
int num = BitConverter.ToInt32(BitConverter.GetBytes(timer), 0);
num = ((num & 0xffff) ^ (num >> 0x10)) << 8;
rndSeed = (rndSeed & -16776961) | num;
m_rndSeed = rndSeed;
}
public static void Randomize(double Number)
{
Randomize(Number, false);
}
public static void Randomize(double Number, bool useHardCodedState)
{
int num;
int rndSeed = 0;
if (useHardCodedState)
rndSeed = CONSTANT_INIT_RNDSEED;
else
rndSeed = m_rndSeed;
if (BitConverter.IsLittleEndian)
{
num = BitConverter.ToInt32(BitConverter.GetBytes(Number), 4);
}
else
{
num = BitConverter.ToInt32(BitConverter.GetBytes(Number), 0);
}
num = ((num & 0xffff) ^ (num >> 0x10)) << 8;
rndSeed = (rndSeed & -16776961) | num;
m_rndSeed = rndSeed;
}
public static float Rnd()
{
return Rnd(1f);
}
public static float Rnd(float Number)
{
int rndSeed = m_rndSeed;
if (Number != 0.0)
{
if (Number < 0.0)
{
long num3 = BitConverter.ToInt32(BitConverter.GetBytes(Number), 0);
num3 &= (long)0xffffffffL;
rndSeed = (int)((num3 + (num3 >> 0x18)) & 0xffffffL);
}
rndSeed = (int)(((rndSeed * 0x43fd43fdL) + 0xc39ec3L) & 0xffffffL);
}
m_rndSeed = rndSeed;
return (((float)rndSeed) / 1.677722E+07f);
}
}
</code></pre>
http://stackoverflow.com/questions/679623/generate-user-friendly-codes3Generate User Friendly CodesB Z2009-03-24T23:14:00Z2009-03-26T03:46:05Z
<p>I am researching methods to generate a random human friendly code but not (easily) guessable. This will be used to give away prizes (think unique discount codes). We are to generate about 50k. Are there any standard methods/algorithms to accomplish this? I was thinking of using a GUID and applying CRC. Is this a bad idea?</p>
<p>Using .netframework 3.5 if it matters.</p>
http://stackoverflow.com/questions/519891/ensure-uniform-ish-distribution-with-random-number-generation1Ensure uniform (ish) distribution with random number generationRocco2009-02-06T11:03:29Z2009-02-06T12:27:59Z
<p>I have a list of objects and I would like to access the objects in a random order continuously.</p>
<p>I was wondering if there was a way of ensuring that the random value were not always similar.</p>
<p>Example.</p>
<p>My list is a list of Queues, and I am trying to interleave the values to produce a real-world scenario for testing.</p>
<p>I don't particularly want all of the items in Queues 1 and 2 before any other item.
Is there a guaruanteed way to do this?</p>
<p>Thanks</p>
<p>EDIT ::
The List of Queues I have is a basically a list of files that i am transmitting to a webservice. Files need to be in a certain order hence the Queues.</p>
<p>So I have
Queue1 = "set1_1.xml", set1_2.xml", ... "set1_n.xml"
Queue2 ...
...
QueueN</p>
<p>While each file needs to be transmitted in order in terms of the other files in its queue, I would like to simulate a real world simulation where files would be received from different sources at different times and so have them interleaved.</p>
<p>At the moment I am just using a simple rand on 0 to (number of Queues) to determine which file to dequeue next. This works but I was asking if there might have been away to get some more uniformity rather than having 50 files from Queue 1 and 2 and then 5 files from Queue 3.</p>
<p>I do realise though that altering the randomness no longer makes it random.</p>
<p>Thank you for all your answers.</p>
http://stackoverflow.com/questions/418817/pros-and-cons-of-rngcryptoserviceprovider3Pros and cons of RNGCryptoServiceProviderconfigurator2009-01-07T01:04:36Z2009-01-08T01:30:11Z
<p>What are the pros and cons of using <code>System.Security.Cryptography.RNGCryptoServiceProvider</code> vs <code>System.Random</code> are. I know that <code>RNGCryptoServiceProvider</code> is 'more random', i.e. less predictable for hackers. Any other pros or cons?</p>
<p><hr /></p>
<p><strong>UPDATE:</strong></p>
<p>According to the responses, here are the pros and cons of using <code>RNGCryptoServiceProvider</code> so far:</p>
<h3>Pros</h3>
<ul>
<li><code>RNGCryptoServiceProvider</code> is a stronger cryptographically random number, meaning it would be better for determining encryption keys and the likes.</li>
</ul>
<h3>Cons</h3>
<ul>
<li><code>Random</code> is faster because it is a simpler calculation; when used in simulations or long calculations where cryptographic randomness isn't important, this should be used.</li>
</ul>
http://stackoverflow.com/questions/403572/how-to-get-random-double-value-out-of-random-byte-array-values2How to get random double value out of random byte array values?Kamil Zadora2008-12-31T17:34:54Z2008-12-31T18:30:58Z
<p>I would like to use RNGCryptoServiceProvider as my source of random numbers. As it only can output them as an array of byte values how can I convert them to 0 to 1 double value while preserving uniformity of results?</p>
http://stackoverflow.com/questions/295900/system-random-keeps-on-returning-the-same-value0System.Random keeps on returning the same valueTomas Pajonk2008-11-17T15:36:56Z2008-11-17T16:14:31Z
<p>I am using a System.Random object which is instantiated with a fixed seed all thoughout the application. I am calling the NextDouble method and after some time passed I am getting 0.0 as result.</p>
<p>Is there any remedy to this, has anyone else encountered this ?</p>
<p>EDIT: I have one seed for the whole run which is set to 1000 for convience sake. The random.NextDouble is called several hundred thousand times. It is an optimizer application and could run for couple hours, but this actually happens after 10-0 mins of execution. I have recently added little bit more random calls to the app.</p>