mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-22 17:19:30 +00:00
11 lines
274 B
C#
11 lines
274 B
C#
namespace System.Rng
|
|
{
|
|
public interface ICryptoRngProvider
|
|
{
|
|
public void GetBytes(byte[] data);
|
|
public byte[] GetBytes(int byteCount);
|
|
public void GetNonZeroBytes(byte[] data);
|
|
public byte[] GetNonZeroBytes(int byteCount);
|
|
}
|
|
}
|