blob: c105f3b6eb5d8132978e49d0a3f3630cbddf8b16 (
plain) (
blame)
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
|
using System;
using System.Text;
using Org.BouncyCastle.Utilities;
namespace Org.BouncyCastle.Asn1.X509
{
public class GeneralNames
: Asn1Encodable
{
private static GeneralName[] Copy(GeneralName[] names)
{
return (GeneralName[])names.Clone();
}
public static GeneralNames GetInstance(object obj)
{
if (obj is GeneralNames)
return (GeneralNames)obj;
if (obj == null)
return null;
return new GeneralNames(Asn1Sequence.GetInstance(obj));
}
public static GeneralNames GetInstance(Asn1TaggedObject obj, bool explicitly)
{
return GetInstance(Asn1Sequence.GetInstance(obj, explicitly));
}
public static GeneralNames FromExtensions(X509Extensions extensions, DerObjectIdentifier extOid)
{
return GetInstance(X509Extensions.GetExtensionParsedValue(extensions, extOid));
}
private readonly GeneralName[] names;
/// <summary>Construct a GeneralNames object containing one GeneralName.</summary>
/// <param name="name">The name to be contained.</param>
public GeneralNames(
GeneralName name)
{
names = new GeneralName[]{ name };
}
public GeneralNames(
GeneralName[] names)
{
this.names = Copy(names);
}
private GeneralNames(
Asn1Sequence seq)
{
this.names = new GeneralName[seq.Count];
for (int i = 0; i != seq.Count; i++)
{
names[i] = GeneralName.GetInstance(seq[i]);
}
}
public GeneralName[] GetNames()
{
return Copy(names);
}
/**
* Produce an object suitable for an Asn1OutputStream.
* <pre>
* GeneralNames ::= Sequence SIZE {1..MAX} OF GeneralName
* </pre>
*/
public override Asn1Object ToAsn1Object()
{
return new DerSequence(names);
}
public override string ToString()
{
StringBuilder buf = new StringBuilder();
string sep = Platform.NewLine;
buf.Append("GeneralNames:");
buf.Append(sep);
foreach (GeneralName name in names)
{
buf.Append(" ");
buf.Append(name);
buf.Append(sep);
}
return buf.ToString();
}
}
}
|