IAsn1String.cs 250 B

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