Is there any fast implementation of cryptographically secure pseudorandom number generator (CSPRNG) for C# 3.0 (.NET Framework 3.5), for authentication tokens?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
But, I think that GUIDs are created using a CSPRNG, so that may be sufficient for your use case. |
|||||||||
|
|
The RNGCryptoServiceProvider class |
|||
|
|
|
That depends on what you mean by fast... There is no really fast secure random generator. If you want fast, you should use the regular Random class. If you want secure you should use the random generator in the Cryptography namespace, but that is significantly slower. You simply can't have both. |
|||
|
|