IX509Store.cs 365 B

123456789101112131415
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. using System.Collections;
  5. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store
  6. {
  7. public interface IX509Store
  8. {
  9. // void Init(IX509StoreParameters parameters);
  10. ICollection GetMatches(IX509Selector selector);
  11. }
  12. }
  13. #pragma warning restore
  14. #endif