Example #1
0
 public static DerSequenceOf FromVector(
     Asn1EncodableVector v)
 {
     return(v.Count < 1 ? Empty : new DerSequenceOf(v));
 }
Example #2
0
 /**
  * @param v - a vector of objects making up the set.
  */
 public DerSet(
     Asn1EncodableVector v)
     : this(v, true)
 {
 }
 public BerApplicationSpecific(
     int tagNo,
     Asn1EncodableVector vec)
     : base(tagNo, vec)
 {
 }
Example #4
0
 internal static DerSet FromVector(
     Asn1EncodableVector v,
     bool needsSorting)
 {
     return(v.Count < 1 ? Empty : new DerSet(v, needsSorting));
 }