IAsn1Convertible.cs 255 B

1234567891011
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1
  4. {
  5. public interface IAsn1Convertible
  6. {
  7. Asn1Object ToAsn1Object();
  8. }
  9. }
  10. #pragma warning restore
  11. #endif