blob: 9942cec8f3d6eadbef111446277eb949f2531550 (
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
|
using System;
using System.Collections.Generic;
using Org.BouncyCastle.Utilities;
namespace Org.BouncyCastle.Asn1.Esf
{
/// <remarks>
/// RFC 3126: 4.2.2 Complete Revocation Refs Attribute Definition
/// <code>
/// CompleteRevocationRefs ::= SEQUENCE OF CrlOcspRef
/// </code>
/// </remarks>
public class CompleteRevocationRefs
: Asn1Encodable
{
private readonly Asn1Sequence crlOcspRefs;
public static CompleteRevocationRefs GetInstance(
object obj)
{
if (obj == null || obj is CompleteRevocationRefs)
return (CompleteRevocationRefs) obj;
if (obj is Asn1Sequence)
return new CompleteRevocationRefs((Asn1Sequence) obj);
throw new ArgumentException(
"Unknown object in 'CompleteRevocationRefs' factory: "
+ Platform.GetTypeName(obj),
"obj");
}
private CompleteRevocationRefs(
Asn1Sequence seq)
{
if (seq == null)
throw new ArgumentNullException("seq");
foreach (Asn1Encodable ae in seq)
{
CrlOcspRef.GetInstance(ae.ToAsn1Object());
}
this.crlOcspRefs = seq;
}
public CompleteRevocationRefs(
params CrlOcspRef[] crlOcspRefs)
{
if (crlOcspRefs == null)
throw new ArgumentNullException("crlOcspRefs");
this.crlOcspRefs = new DerSequence(crlOcspRefs);
}
public CompleteRevocationRefs(
IEnumerable<CrlOcspRef> crlOcspRefs)
{
if (crlOcspRefs == null)
throw new ArgumentNullException("crlOcspRefs");
this.crlOcspRefs = new DerSequence(
Asn1EncodableVector.FromEnumerable(crlOcspRefs));
}
public CrlOcspRef[] GetCrlOcspRefs()
{
CrlOcspRef[] result = new CrlOcspRef[crlOcspRefs.Count];
for (int i = 0; i < crlOcspRefs.Count; ++i)
{
result[i] = CrlOcspRef.GetInstance(crlOcspRefs[i].ToAsn1Object());
}
return result;
}
public override Asn1Object ToAsn1Object()
{
return crlOcspRefs;
}
}
}
|