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 pathX509V2CRLGenerator.cs
More file actions
270 lines (235 loc) · 11.6 KB
/
Copy pathX509V2CRLGenerator.cs
File metadata and controls
270 lines (235 loc) · 11.6 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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
using System;
using System.Collections.Generic;
using Org.BouncyCastle.Asn1;
using Org.BouncyCastle.Asn1.X509;
using Org.BouncyCastle.Crypto;
using Org.BouncyCastle.Math;
namespace Org.BouncyCastle.X509
{
/// <summary>
/// Generator for X.509 version 2 certificate revocation lists (CRLs) as defined in RFC 5280.
/// Builds the TBSCertList structure, optional CRL extensions, and signs the result via
/// <see cref="Generate(ISignatureFactory)"/>.
/// </summary>
public class X509V2CrlGenerator
{
private readonly X509ExtensionsGenerator m_extGenerator = new X509ExtensionsGenerator();
private V2TbsCertListGenerator m_tbsGen;
/// <summary>
/// Creates an empty version 2 CRL generator.
/// </summary>
public X509V2CrlGenerator()
{
m_tbsGen = new V2TbsCertListGenerator();
}
/// <summary>
/// Creates a generator for a version 2 CRL, initialised from another CRL.
/// </summary>
/// <param name="template">Template CRL to base the new one on.</param>
public X509V2CrlGenerator(X509Crl template)
: this(template.CertificateList)
{
}
/// <summary>
/// Creates a generator for a version 2 CRL, initialised from a parsed
/// <see cref="CertificateList"/> structure.
/// </summary>
/// <param name="template">Template certificate list to copy issuer, dates, entries and extensions from.</param>
public X509V2CrlGenerator(CertificateList template)
{
m_tbsGen = new V2TbsCertListGenerator();
m_tbsGen.SetIssuer(template.Issuer);
m_tbsGen.SetThisUpdate(template.ThisUpdate);
m_tbsGen.SetNextUpdate(template.NextUpdate);
AddCrl(new X509Crl(template));
var extensions = template.TbsCertList.Extensions;
if (extensions != null)
{
foreach (var oid in extensions.ExtensionOids)
{
if (X509Extensions.AltSignatureAlgorithm.Equals(oid) ||
X509Extensions.AltSignatureValue.Equals(oid))
{
continue;
}
var extension = extensions.GetExtension(oid);
m_extGenerator.AddExtension(oid, extension.IsCritical, extension.Value.GetOctets());
}
}
}
/// <summary>
/// Resets the generator to an empty CRL state, discarding issuer, dates, entries and extensions.
/// </summary>
public void Reset()
{
m_tbsGen = new V2TbsCertListGenerator();
m_extGenerator.Reset();
}
/// <summary>
/// Sets the issuer distinguished name — the entity whose private key signs the CRL.
/// </summary>
/// <param name="issuer">The issuer's distinguished name.</param>
public void SetIssuerDN(X509Name issuer)
{
m_tbsGen.SetIssuer(issuer);
}
/// <summary>
/// Sets the time at which this CRL was issued (<c>thisUpdate</c> in the TBSCertList).
/// </summary>
/// <param name="date">The issue time.</param>
public void SetThisUpdate(DateTime date)
{
m_tbsGen.SetThisUpdate(new Time(date));
}
/// <summary>
/// Sets the time by which the next CRL in the sequence is expected to be issued
/// (<c>nextUpdate</c> in the TBSCertList).
/// </summary>
/// <param name="date">The next update time.</param>
public void SetNextUpdate(DateTime date)
{
m_tbsGen.SetNextUpdate(new Time(date));
}
/// <summary>
/// Adds a revoked-certificate entry with an optional <see cref="CrlReason"/> code.
/// </summary>
/// <param name="userCertificate">Serial number of the revoked certificate.</param>
/// <param name="revocationDate">The revocation date.</param>
/// <param name="reason">
/// Reason code as defined by <see cref="CrlReason"/> (for example
/// <see cref="CrlReason.KeyCompromise"/>), or <c>0</c> to omit a reason extension.
/// </param>
public void AddCrlEntry(BigInteger userCertificate, DateTime revocationDate, int reason)
{
m_tbsGen.AddCrlEntry(new DerInteger(userCertificate), new Time(revocationDate), reason);
}
/// <summary>
/// Adds a revoked-certificate entry with <see cref="CrlReason"/> and an Invalidity Date extension.
/// </summary>
/// <param name="userCertificate">Serial number of the revoked certificate.</param>
/// <param name="revocationDate">The revocation date.</param>
/// <param name="reason">
/// Reason code as defined by <see cref="CrlReason"/>, or <c>0</c> to omit a reason extension.
/// </param>
/// <param name="invalidityDate">The invalidity date carried in the Invalidity Date extension.</param>
public void AddCrlEntry(BigInteger userCertificate, DateTime revocationDate, int reason,
DateTime invalidityDate)
{
m_tbsGen.AddCrlEntry(new DerInteger(userCertificate), new Time(revocationDate), reason,
Rfc5280Asn1Utilities.CreateGeneralizedTime(invalidityDate));
}
/// <summary>
/// Adds a revoked-certificate entry with caller-supplied CRL entry extensions.
/// </summary>
/// <param name="userCertificate">Serial number of the revoked certificate.</param>
/// <param name="revocationDate">The revocation date.</param>
/// <param name="extensions">Extensions to attach to this CRL entry.</param>
public void AddCrlEntry(BigInteger userCertificate, DateTime revocationDate, X509Extensions extensions)
{
m_tbsGen.AddCrlEntry(new DerInteger(userCertificate), new Time(revocationDate), extensions);
}
/// <summary>
/// Copies all revoked-certificate entries from another CRL into this generator.
/// </summary>
/// <param name="other">The CRL whose entries are to be added.</param>
/// <exception cref="ArgumentNullException"><paramref name="other"/> is <c>null</c>.</exception>
public void AddCrl(X509Crl other)
{
if (other == null)
throw new ArgumentNullException(nameof(other));
var revocations = other.GetRevokedCertificates();
if (revocations != null)
{
foreach (X509CrlEntry entry in revocations)
{
m_tbsGen.AddCrlEntry(Asn1Sequence.GetInstance(entry.CrlEntry));
}
}
}
/// <summary>
/// Adds a CRL extension identified by a dotted-decimal OID string.
/// </summary>
/// <param name="oid">Dotted-decimal object identifier.</param>
/// <param name="critical"><c>true</c> if the extension is marked critical.</param>
/// <param name="extensionValue">The DER-encoded extension value.</param>
public void AddExtension(string oid, bool critical, Asn1Encodable extensionValue)
{
m_extGenerator.AddExtension(new DerObjectIdentifier(oid), critical, extensionValue);
}
/// <summary>
/// Adds a CRL extension.
/// </summary>
/// <param name="oid">The extension object identifier.</param>
/// <param name="critical"><c>true</c> if the extension is marked critical.</param>
/// <param name="extensionValue">The DER-encoded extension value.</param>
public void AddExtension(DerObjectIdentifier oid, bool critical, Asn1Encodable extensionValue)
{
m_extGenerator.AddExtension(oid, critical, extensionValue);
}
/// <summary>
/// Adds a CRL extension identified by a dotted-decimal OID string.
/// </summary>
/// <param name="oid">Dotted-decimal object identifier.</param>
/// <param name="critical"><c>true</c> if the extension is marked critical.</param>
/// <param name="extensionValue">Raw octets of the extension value.</param>
public void AddExtension(string oid, bool critical, byte[] extensionValue)
{
m_extGenerator.AddExtension(new DerObjectIdentifier(oid), critical, DerOctetString.FromContents(extensionValue));
}
/// <summary>
/// Adds a CRL extension.
/// </summary>
/// <param name="oid">The extension object identifier.</param>
/// <param name="critical"><c>true</c> if the extension is marked critical.</param>
/// <param name="extensionValue">Raw octets of the extension value.</param>
public void AddExtension(DerObjectIdentifier oid, bool critical, byte[] extensionValue)
{
m_extGenerator.AddExtension(oid, critical, DerOctetString.FromContents(extensionValue));
}
/// <summary>
/// Generate a new <see cref="X509Crl"/> using the provided <see cref="ISignatureFactory"/>.
/// </summary>
/// <param name="signatureFactory">A <see cref="ISignatureFactory">signature factory</see> with the necessary
/// algorithm details.</param>
/// <returns>An <see cref="X509Crl"/>.</returns>
public X509Crl Generate(ISignatureFactory signatureFactory)
{
var sigAlgID = (AlgorithmIdentifier)signatureFactory.AlgorithmDetails;
m_tbsGen.SetSignature(sigAlgID);
if (!m_extGenerator.IsEmpty)
{
m_tbsGen.SetExtensions(m_extGenerator.Generate());
}
var tbsCertList = m_tbsGen.GenerateTbsCertList();
var signature = X509Utilities.GenerateSignature(signatureFactory, tbsCertList);
return new X509Crl(CertificateList.GetInstance(new DerSequence(tbsCertList, sigAlgID, signature)));
}
/// <summary>
/// Generate a new <see cref="X509Crl"/> using the provided <see cref="ISignatureFactory"/> and
/// containing altSignatureAlgorithm and altSignatureValue extensions based on the passed
/// <paramref name="altSignatureFactory"/>.
/// </summary>
/// <param name="signatureFactory">A <see cref="ISignatureFactory">signature factory</see> with the necessary
/// algorithm details.</param>
/// <param name="isCritical">Whether the 'alt' extensions should be marked critical.</param>
/// <param name="altSignatureFactory">A <see cref="ISignatureFactory">signature factory</see> used to create the
/// altSignatureAlgorithm and altSignatureValue extensions.</param>
/// <returns>An <see cref="X509Crl"/>.</returns>
public X509Crl Generate(ISignatureFactory signatureFactory, bool isCritical,
ISignatureFactory altSignatureFactory)
{
m_tbsGen.SetSignature(null);
var altSigAlgID = (AlgorithmIdentifier)altSignatureFactory.AlgorithmDetails;
m_extGenerator.AddExtension(X509Extensions.AltSignatureAlgorithm, isCritical, altSigAlgID);
m_tbsGen.SetExtensions(m_extGenerator.Generate());
var altSignature = X509Utilities.GenerateSignature(altSignatureFactory, m_tbsGen.GeneratePreTbsCertList());
m_extGenerator.AddExtension(X509Extensions.AltSignatureValue, isCritical, altSignature);
return Generate(signatureFactory);
}
/// <summary>
/// Allows enumeration of the signature names supported by the generator.
/// </summary>
[Obsolete("Will be removed")]
public IEnumerable<string> SignatureAlgNames => X509Utilities.GetAlgNames();
}
}