TlsClientContext.cs 243 B

123456789101112131415
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. using System;
  3. using Org.BouncyCastle.Security;
  4. namespace Org.BouncyCastle.Crypto.Tls
  5. {
  6. public interface TlsClientContext
  7. : TlsContext
  8. {
  9. }
  10. }
  11. #endif