ASN1OctetStringParser.cs 226 B

12345678910111213
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. using System.IO;
  3. namespace Org.BouncyCastle.Asn1
  4. {
  5. public interface Asn1OctetStringParser
  6. : IAsn1Convertible
  7. {
  8. Stream GetOctetStream();
  9. }
  10. }
  11. #endif