#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
namespace BestHTTP.SecureProtocol.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);
}
}
#pragma warning restore
#endif