mirrored from https://www.bouncycastle.org/repositories/bc-csharp
-
Notifications
You must be signed in to change notification settings - Fork 602
Expand file tree
/
Copy pathOCSPReq.cs
More file actions
176 lines (148 loc) · 5.89 KB
/
Copy pathOCSPReq.cs
File metadata and controls
176 lines (148 loc) · 5.89 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
using System;
using System.Collections.Generic;
using System.IO;
using Org.BouncyCastle.Asn1;
using Org.BouncyCastle.Asn1.Ocsp;
using Org.BouncyCastle.Asn1.X509;
using Org.BouncyCastle.Crypto;
using Org.BouncyCastle.Crypto.Operators;
using Org.BouncyCastle.Utilities.Collections;
using Org.BouncyCastle.X509;
namespace Org.BouncyCastle.Ocsp
{
/**
* <pre>
* OcspRequest ::= SEQUENCE {
* tbsRequest TBSRequest,
* optionalSignature [0] EXPLICIT Signature OPTIONAL }
*
* TBSRequest ::= SEQUENCE {
* version [0] EXPLICIT Version DEFAULT v1,
* requestorName [1] EXPLICIT GeneralName OPTIONAL,
* requestList SEQUENCE OF Request,
* requestExtensions [2] EXPLICIT Extensions OPTIONAL }
*
* Signature ::= SEQUENCE {
* signatureAlgorithm AlgorithmIdentifier,
* signature BIT STRING,
* certs [0] EXPLICIT SEQUENCE OF Certificate OPTIONAL}
*
* Version ::= INTEGER { v1(0) }
*
* Request ::= SEQUENCE {
* reqCert CertID,
* singleRequestExtensions [0] EXPLICIT Extensions OPTIONAL }
*
* CertID ::= SEQUENCE {
* hashAlgorithm AlgorithmIdentifier,
* issuerNameHash OCTET STRING, -- Hash of Issuer's DN
* issuerKeyHash OCTET STRING, -- Hash of Issuers public key
* serialNumber CertificateSerialNumber }
* </pre>
*/
public class OcspReq
: X509ExtensionBase
{
private OcspRequest req;
public OcspReq(OcspRequest req)
{
this.req = req;
}
public OcspReq(byte[] req)
: this(new Asn1InputStream(req))
{
}
public OcspReq(Stream inStr)
: this(new Asn1InputStream(inStr))
{
}
private OcspReq(Asn1InputStream aIn)
{
try
{
this.req = OcspRequest.GetInstance(aIn.ReadObject());
}
catch (ArgumentException e)
{
throw new IOException("malformed request: " + e.Message);
}
catch (InvalidCastException e)
{
throw new IOException("malformed request: " + e.Message);
}
}
/// <summary>Return the DER encoding of the tbsRequest field.</summary>
public byte[] GetTbsRequest()
{
try
{
return req.TbsRequest.GetEncoded(Asn1Encodable.Der);
}
catch (IOException e)
{
throw new OcspException("problem encoding tbsRequest", e);
}
}
public int Version => req.TbsRequest.Version.IntValueExact + 1;
public GeneralName RequestorName => GeneralName.GetInstance(req.TbsRequest.RequestorName);
public Req[] GetRequestList() =>
req.TbsRequest.RequestList.MapElements(element => new Req(Request.GetInstance(element)));
public X509Extensions RequestExtensions => X509Extensions.GetInstance(req.TbsRequest.RequestExtensions);
protected override X509Extensions GetX509Extensions() => RequestExtensions;
public AlgorithmIdentifier SignatureAlgorithm => req.OptionalSignature?.SignatureAlgorithm;
/// <summary>The object identifier representing the signature algorithm.</summary>
public string SignatureAlgOid => req.OptionalSignature?.SignatureAlgorithm.Algorithm.GetID();
public byte[] GetSignature() => req.OptionalSignature?.GetSignatureOctets();
private List<X509Certificate> GetCertList()
{
// load the certificates if we have any
var result = new List<X509Certificate>();
Asn1Sequence certs = req.OptionalSignature.Certs;
if (certs != null)
{
foreach (Asn1Encodable element in certs)
{
result.Add(new X509Certificate(X509CertificateStructure.GetInstance(element)));
}
}
return result;
}
public X509Certificate[] GetCerts()
{
if (!IsSigned)
return null;
return GetCertList().ToArray();
}
/// <summary>
/// If the request is signed return a possibly empty CertStore containing the certificates in the
/// request. If the request is not signed the method returns null.
/// </summary>
public IStore<X509Certificate> GetCertificates()
{
if (!IsSigned)
return null;
return CollectionUtilities.CreateStore(GetCertList());
}
/// <summary>Return whether or not this request is signed.</summary>
public bool IsSigned => req.OptionalSignature != null;
/// <summary>Verify the signature against the TBSRequest object we contain.</summary>
public bool Verify(AsymmetricKeyParameter publicKey)
{
var optionalSignature = req.OptionalSignature;
if (optionalSignature == null)
throw new OcspException("attempt to verify signature on unsigned object");
try
{
var verifierFactory = new Asn1VerifierFactory(optionalSignature.SignatureAlgorithm, publicKey);
return X509.X509Utilities.VerifySignature(verifierFactory, req.TbsRequest,
optionalSignature.SignatureValue);
}
catch (Exception e)
{
throw new OcspException("exception processing sig: " + e, e);
}
}
/// <summary>Return the ASN.1 encoded representation of this object.</summary>
public byte[] GetEncoded() => req.GetEncoded();
}
}