TlsClientContext.cs 351 B

1234567891011121314
  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. /// <summary>Marker interface to distinguish a TLS client context.</summary>
  7. public interface TlsClientContext
  8. : TlsContext
  9. {
  10. }
  11. }
  12. #pragma warning restore
  13. #endif