blob: ff75d7d6d457c75b5e648bf4cc990e23a60a9e55 (
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
|
using System;
using Org.BouncyCastle.Utilities;
namespace Org.BouncyCastle.Asn1.Cmp
{
public class PollRepContent
: Asn1Encodable
{
private readonly DerInteger certReqId;
private readonly DerInteger checkAfter;
private readonly PkiFreeText reason;
private PollRepContent(Asn1Sequence seq)
{
certReqId = DerInteger.GetInstance(seq[0]);
checkAfter = DerInteger.GetInstance(seq[1]);
if (seq.Count > 2)
{
reason = PkiFreeText.GetInstance(seq[2]);
}
}
public static PollRepContent GetInstance(object obj)
{
if (obj is PollRepContent)
return (PollRepContent)obj;
if (obj is Asn1Sequence)
return new PollRepContent((Asn1Sequence)obj);
throw new ArgumentException("Invalid object: " + Platform.GetTypeName(obj), "obj");
}
public PollRepContent(
DerInteger certReqId,
DerInteger checkAfter)
{
this.certReqId = certReqId;
this.checkAfter = checkAfter;
this.reason = null;
}
public PollRepContent(
DerInteger certReqId,
DerInteger checkAfter,
PkiFreeText reason)
{
this.certReqId = certReqId;
this.checkAfter = checkAfter;
this.reason = reason;
}
public virtual DerInteger CertReqID
{
get { return certReqId; }
}
public virtual DerInteger CheckAfter
{
get { return checkAfter; }
}
public virtual PkiFreeText Reason
{
get { return reason; }
}
/**
* <pre>
* PollRepContent ::= SEQUENCE OF SEQUENCE {
* certReqId INTEGER,
* checkAfter INTEGER, -- time in seconds
* reason PKIFreeText OPTIONAL
* }
* </pre>
* @return a basic ASN.1 object representation.
*/
public override Asn1Object ToAsn1Object()
{
Asn1EncodableVector v = new Asn1EncodableVector(certReqId, checkAfter);
v.AddOptional(reason);
return new DerSequence(v);
}
}
}
|