24 lines
479 B
C#
24 lines
479 B
C#
|
|
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||
|
|
#pragma warning disable
|
||
|
|
using System;
|
||
|
|
using System.IO;
|
||
|
|
|
||
|
|
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Asn1
|
||
|
|
{
|
||
|
|
internal class DerOutputStream
|
||
|
|
: Asn1OutputStream
|
||
|
|
{
|
||
|
|
internal DerOutputStream(Stream os)
|
||
|
|
: base(os)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
internal override int Encoding
|
||
|
|
{
|
||
|
|
get { return EncodingDer; }
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
#pragma warning restore
|
||
|
|
#endif
|