123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- #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 BerSet
- : DerSet
- {
- public static new readonly BerSet Empty = new BerSet();
- public static new BerSet FromVector(Asn1EncodableVector elementVector)
- {
- return elementVector.Count < 1 ? Empty : new BerSet(elementVector);
- }
- internal static new BerSet FromVector(Asn1EncodableVector elementVector, bool needsSorting)
- {
- return elementVector.Count < 1 ? Empty : new BerSet(elementVector, needsSorting);
- }
- /**
- * create an empty sequence
- */
- public BerSet()
- : base()
- {
- }
- /**
- * create a set containing one object
- */
- public BerSet(Asn1Encodable element)
- : base(element)
- {
- }
- /**
- * create a set containing a vector of objects.
- */
- public BerSet(Asn1EncodableVector elementVector)
- : base(elementVector, false)
- {
- }
- internal BerSet(Asn1EncodableVector elementVector, bool needsSorting)
- : base(elementVector, needsSorting)
- {
- }
- internal override int EncodedLength(bool withID)
- {
- throw BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateNotImplementedException("BerSet.EncodedLength");
- }
- internal override void Encode(Asn1OutputStream asn1Out, bool withID)
- {
- if (asn1Out.IsBer)
- {
- asn1Out.WriteEncodingIL(withID, Asn1Tags.Constructed | Asn1Tags.Set, elements);
- }
- else
- {
- base.Encode(asn1Out, withID);
- }
- }
- }
- }
- #pragma warning restore
- #endif
|