TlsServerCertificate.cs 413 B

12345678910111213141516
  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>Server certificate carrier interface.</summary>
  7. public interface TlsServerCertificate
  8. {
  9. Certificate Certificate { get; }
  10. CertificateStatus CertificateStatus { get; }
  11. }
  12. }
  13. #pragma warning restore
  14. #endif