CertificateStatus.cs 303 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.Ocsp
  5. {
  6. public abstract class CertificateStatus
  7. {
  8. public static readonly CertificateStatus Good = null;
  9. }
  10. }
  11. #pragma warning restore
  12. #endif