blob: ac568d741a528531c8842d0567efdadfa82ba9dd (
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
|
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()
{
return content.MapElements(AttributeTypeAndValue.GetInstance);
}
/**
* <pre>
* Controls ::= SEQUENCE SIZE(1..MAX) OF AttributeTypeAndValue
* </pre>
* @return a basic ASN.1 object representation.
*/
public override Asn1Object ToAsn1Object()
{
return content;
}
}
}
|