IDerivationParameters.cs 330 B

123456789101112131415
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto
  5. {
  6. /**
  7. * Parameters for key/byte stream derivation classes
  8. */
  9. public interface IDerivationParameters
  10. {
  11. }
  12. }
  13. #pragma warning restore
  14. #endif