11 lines
159 B
C#
11 lines
159 B
C#
namespace Org.BouncyCastle.Crypto;
|
|
|
|
public interface IEntropySource
|
|
{
|
|
bool IsPredictionResistant { get; }
|
|
|
|
int EntropySize { get; }
|
|
|
|
byte[] GetEntropy();
|
|
}
|