mirrored from https://www.bouncycastle.org/repositories/bc-csharp
-
Notifications
You must be signed in to change notification settings - Fork 602
Expand file tree
/
Copy pathDLSequence.cs
More file actions
158 lines (124 loc) · 4.92 KB
/
Copy pathDLSequence.cs
File metadata and controls
158 lines (124 loc) · 4.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
using System;
using System.Collections.Generic;
using Org.BouncyCastle.Utilities.Collections;
namespace Org.BouncyCastle.Asn1
{
public class DLSequence
: DerSequence
{
public static new readonly DLSequence Empty = new DLSequence();
public static new DLSequence Concatenate(params Asn1Sequence[] sequences)
{
if (sequences == null)
return Empty;
switch (sequences.Length)
{
case 0:
return Empty;
case 1:
return FromSequence(sequences[0]);
default:
return WithElements(ConcatenateElements(sequences));
}
}
public static new DLSequence FromCollection(IReadOnlyCollection<Asn1Encodable> elements)
{
return elements.Count < 1 ? Empty : new DLSequence(elements);
}
public static new DLSequence FromElement(Asn1Encodable element) => new DLSequence(element);
public static new DLSequence FromElements(Asn1Encodable element1, Asn1Encodable element2) =>
new DLSequence(element1, element2);
public static new DLSequence FromElements(Asn1Encodable[] elements)
{
if (elements == null)
throw new ArgumentNullException(nameof(elements));
return elements.Length < 1 ? Empty : new DLSequence(elements);
}
public static new DLSequence FromElementsOptional(Asn1Encodable[] elements)
{
if (elements == null)
return null;
return elements.Length < 1 ? Empty : new DLSequence(elements);
}
public static new DLSequence FromSequence(Asn1Sequence sequence)
{
if (sequence is DLSequence dlSequence)
return dlSequence;
return WithElements(sequence.m_elements);
}
public static new DLSequence FromVector(Asn1EncodableVector elementVector)
{
return elementVector.Count < 1 ? Empty : new DLSequence(elementVector);
}
public static new DLSequence Map(Asn1Sequence sequence, Func<Asn1Encodable, Asn1Encodable> func)
{
return sequence.Count < 1 ? Empty : new DLSequence(sequence.MapElements(func), clone: false);
}
public static new DLSequence Map<T>(T[] ts, Func<T, Asn1Encodable> func)
{
return ts.Length < 1 ? Empty : new DLSequence(CollectionUtilities.Map(ts, func), clone: false);
}
public static new DLSequence Map<T>(IReadOnlyCollection<T> c, Func<T, Asn1Encodable> func)
{
return c.Count < 1 ? Empty : new DLSequence(CollectionUtilities.Map(c, func), clone: false);
}
internal static new DLSequence WithElements(Asn1Encodable[] elements)
{
return elements.Length < 1 ? Empty : new DLSequence(elements, clone: false);
}
public DLSequence()
: base()
{
}
public DLSequence(Asn1Encodable element)
: base(element)
{
}
public DLSequence(Asn1Encodable element1, Asn1Encodable element2)
: base(element1, element2)
{
}
public DLSequence(params Asn1Encodable[] elements)
: base(elements)
{
}
public DLSequence(Asn1EncodableVector elementVector)
: base(elementVector)
{
}
public DLSequence(IReadOnlyCollection<Asn1Encodable> elements)
: base(elements)
{
}
public DLSequence(Asn1Sequence sequence)
: base(sequence)
{
}
public DLSequence(Asn1Set asn1Set)
: base(asn1Set)
{
}
internal DLSequence(Asn1Encodable[] elements, bool clone)
: base(elements, clone)
{
}
internal override IAsn1Encoding GetEncoding(int encoding)
{
if (Asn1OutputStream.EncodingDer == encoding)
return base.GetEncoding(encoding);
return new ConstructedDLEncoding(Asn1Tags.Universal, Asn1Tags.Sequence,
Asn1OutputStream.GetContentsEncodings(Asn1OutputStream.EncodingDL, m_elements));
}
internal override IAsn1Encoding GetEncodingImplicit(int encoding, int tagClass, int tagNo)
{
if (Asn1OutputStream.EncodingDer == encoding)
return base.GetEncodingImplicit(encoding, tagClass, tagNo);
return new ConstructedDLEncoding(tagClass, tagNo,
Asn1OutputStream.GetContentsEncodings(Asn1OutputStream.EncodingDL, m_elements));
}
internal override DerBitString ToAsn1BitString() =>
new DLBitString(BerBitString.FlattenBitStrings(GetConstructedBitStrings()), false);
internal override DerExternal ToAsn1External() => DLExternal.FromSequence(this);
internal override Asn1Set ToAsn1Set() => new DLSet(false, m_elements);
}
}