blob: 52d5ac50451fd19af9783f1dc854900f3b77b082 (
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
|
using System;
using Org.BouncyCastle.Math;
namespace Org.BouncyCastle.Asn1.Cmp
{
public class CertStatus
: Asn1Encodable
{
private readonly Asn1OctetString certHash;
private readonly DerInteger certReqId;
private readonly PkiStatusInfo statusInfo;
private CertStatus(Asn1Sequence seq)
{
certHash = Asn1OctetString.GetInstance(seq[0]);
certReqId = DerInteger.GetInstance(seq[1]);
if (seq.Count > 2)
{
statusInfo = PkiStatusInfo.GetInstance(seq[2]);
}
}
public CertStatus(byte[] certHash, BigInteger certReqId)
{
this.certHash = new DerOctetString(certHash);
this.certReqId = new DerInteger(certReqId);
}
public CertStatus(byte[] certHash, BigInteger certReqId, PkiStatusInfo statusInfo)
{
this.certHash = new DerOctetString(certHash);
this.certReqId = new DerInteger(certReqId);
this.statusInfo = statusInfo;
}
public static CertStatus GetInstance(object obj)
{
if (obj is CertStatus)
return (CertStatus)obj;
if (obj is Asn1Sequence)
return new CertStatus((Asn1Sequence)obj);
throw new ArgumentException("Invalid object: " + obj.GetType().Name, "obj");
}
public virtual Asn1OctetString CertHash
{
get { return certHash; }
}
public virtual DerInteger CertReqID
{
get { return certReqId; }
}
public virtual PkiStatusInfo StatusInfo
{
get { return statusInfo; }
}
/**
* <pre>
* CertStatus ::= SEQUENCE {
* certHash OCTET STRING,
* -- the hash of the certificate, using the same hash algorithm
* -- as is used to create and verify the certificate signature
* certReqId INTEGER,
* -- to match this confirmation with the corresponding req/rep
* statusInfo PKIStatusInfo OPTIONAL
* }
* </pre>
* @return a basic ASN.1 object representation.
*/
public override Asn1Object ToAsn1Object()
{
Asn1EncodableVector v = new Asn1EncodableVector(certHash, certReqId);
v.AddOptional(statusInfo);
return new DerSequence(v);
}
}
}
|