ASN1OctetStringParser.cs 509 B

1234567891011121314151617
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. using System.IO;
  5. namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Asn1
  6. {
  7. public interface Asn1OctetStringParser
  8. : IAsn1Convertible
  9. {
  10. /// <summary>Return the content of the OCTET STRING as a <see cref="Stream"/>.</summary>
  11. /// <returns>A <see cref="Stream"/> represnting the OCTET STRING's content.</returns>
  12. Stream GetOctetStream();
  13. }
  14. }
  15. #pragma warning restore
  16. #endif