6
votes
10answers
588 views
Why use the C# class System.Random at all instead of System.Security.Cryptography.RandomNumberGenerator?
Why would anybody use the "standard" random number generator from System.Random at all instead of always using the cryptographically secure random number generator from …
0
votes
4answers
127 views
Obscure VBMath random numbers generator behavior.
Hi,
I want to repeat a random number sequence generated by a legacy software using the VBMath.Rnd and VBMath.Randomize functions in VB .NET
Reading on the documentation for those functions on MSDN …
3
votes
5answers
277 views
Generate User Friendly Codes
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 …
3
votes
2answers
963 views
Pros and cons of RNGCryptoServiceProvider
What are the pros and cons of using System.Security.Cryptography.RNGCryptoServiceProvider vs System.Random are. I know that RNGCryptoServiceProvider is 'more random', i.e. less predictable for …
2
votes
3answers
648 views
How to get random double value out of random byte array values?
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 …
1
vote
4answers
212 views
Ensure uniform (ish) distribution with random number generation
I have a list of objects and I would like to access the objects in a random order continuously.
I was wondering if there was a way of ensuring that the random value were not always similar.
Example.
…
0
votes
5answers
497 views
System.Random keeps on returning the same value
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.
Is …
