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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
using System;
namespace Org.BouncyCastle.Asn1.Cmp
{
public class CertResponse
: Asn1Encodable
{
public static CertResponse GetInstance(object obj)
{
if (obj == null)
return null;
if (obj is CertResponse certResponse)
return certResponse;
return new CertResponse(Asn1Sequence.GetInstance(obj));
}
public static CertResponse GetInstance(Asn1TaggedObject taggedObject, bool declaredExplicit)
{
return GetInstance(Asn1Sequence.GetInstance(taggedObject, declaredExplicit));
}
private readonly DerInteger m_certReqId;
private readonly PkiStatusInfo m_status;
private readonly CertifiedKeyPair m_certifiedKeyPair;
private readonly Asn1OctetString m_rspInfo;
private CertResponse(Asn1Sequence seq)
{
m_certReqId = DerInteger.GetInstance(seq[0]);
m_status = PkiStatusInfo.GetInstance(seq[1]);
if (seq.Count >= 3)
{
if (seq.Count == 3)
{
Asn1Encodable o = seq[2];
if (o is Asn1OctetString)
{
m_rspInfo = Asn1OctetString.GetInstance(o);
}
else
{
m_certifiedKeyPair = CertifiedKeyPair.GetInstance(o);
}
}
else
{
m_certifiedKeyPair = CertifiedKeyPair.GetInstance(seq[2]);
m_rspInfo = Asn1OctetString.GetInstance(seq[3]);
}
}
}
public CertResponse(DerInteger certReqId, PkiStatusInfo status)
: this(certReqId, status, null, null)
{
}
public CertResponse(DerInteger certReqId, PkiStatusInfo status, CertifiedKeyPair certifiedKeyPair,
Asn1OctetString rspInfo)
{
if (certReqId == null)
throw new ArgumentNullException(nameof(certReqId));
if (status == null)
throw new ArgumentNullException(nameof(status));
m_certReqId = certReqId;
m_status = status;
m_certifiedKeyPair = certifiedKeyPair;
m_rspInfo = rspInfo;
}
public virtual DerInteger CertReqID => m_certReqId;
public virtual PkiStatusInfo Status => m_status;
public virtual CertifiedKeyPair CertifiedKeyPair => m_certifiedKeyPair;
/**
* <pre>
* CertResponse ::= SEQUENCE {
* certReqId INTEGER,
* -- to match this response with corresponding request (a value
* -- of -1 is to be used if certReqId is not specified in the
* -- corresponding request)
* status PKIStatusInfo,
* certifiedKeyPair CertifiedKeyPair OPTIONAL,
* rspInfo OCTET STRING OPTIONAL
* -- analogous to the id-regInfo-utf8Pairs string defined
* -- for regInfo in CertReqMsg [CRMF]
* }
* </pre>
* @return a basic ASN.1 object representation.
*/
public override Asn1Object ToAsn1Object()
{
Asn1EncodableVector v = new Asn1EncodableVector(m_certReqId, m_status);
v.AddOptional(m_certifiedKeyPair, m_rspInfo);
return new DerSequence(v);
}
}
}
|