UnknownStatus.cs 338 B

12345678910111213141516171819
  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. /**
  7. * wrapper for the UnknownInfo object
  8. */
  9. public class UnknownStatus
  10. : CertificateStatus
  11. {
  12. public UnknownStatus()
  13. {
  14. }
  15. }
  16. }
  17. #pragma warning restore
  18. #endif