<PackageReference Include="BouncyCastle.Cryptography" Version="2.7.0-beta.98" />

IEntropySource

public interface IEntropySource
Base interface describing an entropy source for a DRBG.
namespace Org.BouncyCastle.Crypto { public interface IEntropySource { bool IsPredictionResistant { get; } int EntropySize { get; } byte[] GetEntropy(); } }