IDrbgProvider.cs 378 B

123456789101112131415
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. using BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg;
  5. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng
  6. {
  7. internal interface IDrbgProvider
  8. {
  9. ISP80090Drbg Get(IEntropySource entropySource);
  10. }
  11. }
  12. #pragma warning restore
  13. #endif