I am currently writing a simple password generator (C#). For that I need some random Numbers.
Is it OK to simply use the Random Class that ships with .NET or are there any known problems with that?
|
1
|
I am currently writing a simple password generator (C#). For that I need some random Numbers. Is it OK to simply use the Random Class that ships with .NET or are there any known problems with that? |
||
|
|
|
|
System.Random is not as "cryptographically strong" source of randomness. The output of the Random function is entirely predictable assuming the attacker knows (or can guess) the "seed" value that was used to create the System.Random. If you simply call new System.Random() that initial value is simply a representation of the current system time (something that an attacker can often guess very easily). Even if the initial time is not exactly known, an attacker can check all of the potential values in a given time range by brute force. The random generators in the System.Security.Cryptography namespace are designed for use in this kind of situation and gain their unpredictability from a number of much more secure sources. |
||
|
|
|
|
If you're after some details on how to make |
||||
|
|
|
Nothing wrong with it--it's good enough to generate simple passwords. A simple example (source):
This article has a very comprehensive example of generating good, easy to read passwords with specified complexity. It may be overkill for you but might provide a nice source to copy ideas from. If you need something more for cryptography, there's another namespace for that:
Specifically, you can use this:
Here's an example, and another one. If you're thinking about rolling your own, this site has some information to talk you out of it. |
|||
|
|