Implementation of SecureString and CryptoRngProvider

This commit is contained in:
Alexandru Macocian
2021-07-15 16:11:05 +03:00
parent 1711dd2ec2
commit 68ec8f983d
8 changed files with 324 additions and 3 deletions
@@ -0,0 +1,8 @@
namespace System.Rng
{
public interface ICryptoRngProvider
{
public void GetBytes(byte[] data);
public void GetNonZeroBytes(byte[] data);
}
}