JasonBock / SpackleNet

Spackle is a project that contains a number of helper methods I've used to supplement the core classes in .NET.
MIT License
14 stars 1 forks source link

Consider Making `SecureRandom` Obsolete #45

Open JasonBock opened 1 year ago

JasonBock commented 1 year ago

When I first made SecureRandom, it was an attempt to combine Random and RandomNumberGenerator. However, Random is now considered to be insecure, so I'm thinking of making SecureRandom obsolete. There are some helpful methods on this type, though, that I'd like to keep, but I can't make them extension methods on RandomNumberGenerator because they would be static methods themselves.