using System; namespace Org.BouncyCastle.Crypto { /// /// Base interface describing a provider of entropy sources. /// public interface IEntropySourceProvider { /// /// Return an entropy source providing a block of entropy. /// /// The size of the block of entropy required. /// An entropy source providing bitsRequired blocks of entropy. IEntropySource Get(int bitsRequired); } }