| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- #pragma warning disable
- using System;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities;
- namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1
- {
- public class BerBitString
- : DerBitString
- {
- public BerBitString(byte[] data, int padBits)
- : base(data, padBits)
- {
- }
- public BerBitString(byte[] data)
- : base(data)
- {
- }
- public BerBitString(int namedBits)
- : base(namedBits)
- {
- }
- public BerBitString(Asn1Encodable obj)
- : base(obj)
- {
- }
- internal override void Encode(
- DerOutputStream derOut)
- {
- if (derOut is Asn1OutputStream || derOut is BerOutputStream)
- {
- derOut.WriteEncoded(Asn1Tags.BitString, (byte)mPadBits, mData);
- }
- else
- {
- base.Encode(derOut);
- }
- }
- }
- }
- #pragma warning restore
- #endif
|