1234567891011121314151617181920212223 |
- #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
|