blob: 4881d0890ba3bd907773546dc689b81efa77c4df (
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
97
98
99
100
101
102
103
104
|
using System;
namespace Org.BouncyCastle.Asn1.X500
{
/**
* Holding class for a single Relative Distinguished Name (RDN).
*/
public class Rdn
: Asn1Encodable
{
private readonly Asn1Set values;
private Rdn(Asn1Set values)
{
this.values = values;
}
public static Rdn GetInstance(object obj)
{
if (obj is Rdn)
return (Rdn)obj;
if (null != obj)
return new Rdn(Asn1Set.GetInstance(obj));
return null;
}
/**
* Create a single valued RDN.
*
* @param oid RDN type.
* @param value RDN value.
*/
public Rdn(DerObjectIdentifier oid, Asn1Encodable value)
{
this.values = new DerSet(new DerSequence(oid, value));
}
public Rdn(AttributeTypeAndValue attrTAndV)
{
this.values = new DerSet(attrTAndV);
}
/**
* Create a multi-valued RDN.
*
* @param aAndVs attribute type/value pairs making up the RDN
*/
public Rdn(AttributeTypeAndValue[] aAndVs)
{
this.values = new DerSet(aAndVs);
}
public virtual bool IsMultiValued
{
get { return this.values.Count > 1; }
}
/**
* Return the number of AttributeTypeAndValue objects in this RDN,
*
* @return size of RDN, greater than 1 if multi-valued.
*/
public virtual int Count
{
get { return this.values.Count; }
}
public virtual AttributeTypeAndValue GetFirst()
{
if (this.values.Count == 0)
return null;
return AttributeTypeAndValue.GetInstance(this.values[0]);
}
public virtual AttributeTypeAndValue[] GetTypesAndValues()
{
AttributeTypeAndValue[] tmp = new AttributeTypeAndValue[values.Count];
for (int i = 0; i < tmp.Length; ++i)
{
tmp[i] = AttributeTypeAndValue.GetInstance(values[i]);
}
return tmp;
}
/**
* <pre>
* RelativeDistinguishedName ::=
* SET OF AttributeTypeAndValue
* AttributeTypeAndValue ::= SEQUENCE {
* type AttributeType,
* value AttributeValue }
* </pre>
* @return this object as its ASN1Primitive type
*/
public override Asn1Object ToAsn1Object()
{
return values;
}
}
}
|