blob: 70b48a9591b786bfc7d0b4eacc763640b54cc7cc (
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
|
using System;
using System.Text;
using Org.BouncyCastle.Utilities;
namespace Org.BouncyCastle.Asn1.Crmf
{
public class Controls
: Asn1Encodable
{
private readonly Asn1Sequence content;
private Controls(Asn1Sequence seq)
{
content = seq;
}
public static Controls GetInstance(object obj)
{
if (obj is Controls)
return (Controls)obj;
if (obj is Asn1Sequence)
return new Controls((Asn1Sequence)obj);
throw new ArgumentException("Invalid object: " + Platform.GetTypeName(obj), "obj");
}
public Controls(params AttributeTypeAndValue[] atvs)
{
content = new DerSequence(atvs);
}
public virtual AttributeTypeAndValue[] ToAttributeTypeAndValueArray()
{
AttributeTypeAndValue[] result = new AttributeTypeAndValue[content.Count];
for (int i = 0; i != result.Length; ++i)
{
result[i] = AttributeTypeAndValue.GetInstance(content[i]);
}
return result;
}
/**
* <pre>
* Controls ::= SEQUENCE SIZE(1..MAX) OF AttributeTypeAndValue
* </pre>
* @return a basic ASN.1 object representation.
*/
public override Asn1Object ToAsn1Object()
{
return content;
}
}
}
|