I'd like to generate random unique strings like the ones being generated by MSDN library:
http://msdn.microsoft.com/en-us/library/t9zk6eay.aspx, for example. A string like 't9zk6eay' should be generated.
|
I'd like to generate random unique strings like the ones being generated by MSDN library: http://msdn.microsoft.com/en-us/library/t9zk6eay.aspx, for example. A string like 't9zk6eay' should be generated. |
|||
|
|
|
Using Guid would be a pretty good way, but to get something looking like your example, you probably want to convert it to a Base64 string:
I get rid of "=" and "+" to get a little closer to your example, otherwise you get "==" at the end of your string and a "+" in the middle. Here's an example output string: "OZVV5TpP4U6wJthaCORZEQ" |
|||||
|
|
Since no one has provided secure code yet, I post the following in case anyone finds it useful.
|
|||||||||||||
|
|
I would caution that GUIDs are not random numbers. They should not be used as the basis to generate anything that you expect to be totally random (see http://en.wikipedia.org/wiki/Globally_Unique_Identifier):
Instead, just use the C# Random method. Something like this (code found here):
GUIDs are fine if you want something unique (like a unique filename or key in a database), but they are not good for something you want to be random (like a password or encryption key). So it depends on your application. Edit. Microsoft says that Random is not that great either (http://msdn.microsoft.com/en-us/library/system.random(VS.71).aspx):
|
|||||||||||||||||
|
|
I don't think that they really are random, but my guess is those are some hashes. Whenever I need some random identifier, I usually use a GUID and convert it to its "naked" representation:
|
|||
|
|
|||||
|
|
This has been asked for various languages. Here's one question about passwords which should be applicable here as well. If you want to use the strings for URL shortening, you'll also need a Dictionary<> or database check to see whether a generated ID has already been used. |
|||
|
|
|
Get Unique Key using GUID Hash code
|
|||||
|