IAsn1String.cs 321 B

1234567891011121314
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1
  4. {
  5. /**
  6. * basic interface for Der string objects.
  7. */
  8. public interface IAsn1String
  9. {
  10. string GetString();
  11. }
  12. }
  13. #pragma warning restore
  14. #endif