mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-16 14:39:28 +00:00
9 lines
173 B
C#
9 lines
173 B
C#
namespace System.Rng
|
|
{
|
|
public interface ICryptoRngProvider
|
|
{
|
|
public void GetBytes(byte[] data);
|
|
public void GetNonZeroBytes(byte[] data);
|
|
}
|
|
}
|