Danilo Castro
Results
2
comments of
Danilo Castro
Hi, To use in dotnet core we just need change this: `using (RNGCryptoServiceProvider csprng = new RNGCryptoServiceProvider()) { csprng.GetBytes(salt); }` to this: `using (var rng = RandomNumberGenerator.Create()) { rng.GetBytes(salt); }`
I created a Pull Request to include the file I made.