Is RNGCryptoServiceProvider.GetBytes thread safe?
.net
Solution
Yes. It's in the "remarks" section:
The length of the byte array determines how many cryptographically strong random bytes are produced. This method is thread safe.
Problem
Is RNGCryptoServiceProvider.GetBytes thread safe? I can't seem to find any notes on it in the documentation.