32 lines
594 B
C#
32 lines
594 B
C#
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
|
#pragma warning disable
|
|
using System.Collections;
|
|
using System.IO;
|
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1
|
|
{
|
|
public abstract class Asn1Generator
|
|
{
|
|
private Stream _out;
|
|
|
|
protected Asn1Generator(
|
|
Stream outStream)
|
|
{
|
|
_out = outStream;
|
|
}
|
|
|
|
protected Stream Out
|
|
{
|
|
get { return _out; }
|
|
}
|
|
|
|
public abstract void AddObject(Asn1Encodable obj);
|
|
|
|
public abstract Stream GetRawOutputStream();
|
|
|
|
public abstract void Close();
|
|
}
|
|
}
|
|
#pragma warning restore
|
|
#endif
|