14 lines
239 B
C#
14 lines
239 B
C#
|
|
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||
|
|
using System.IO;
|
||
|
|
|
||
|
|
namespace Org.BouncyCastle.Asn1
|
||
|
|
{
|
||
|
|
public interface Asn1OctetStringParser
|
||
|
|
: IAsn1Convertible
|
||
|
|
{
|
||
|
|
Stream GetOctetStream();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|