TlsPskExternal.cs 264 B

12345678910111213
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Tls
  5. {
  6. public interface TlsPskExternal
  7. : TlsPsk
  8. {
  9. }
  10. }
  11. #pragma warning restore
  12. #endif