-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathDerEncoder.cs
More file actions
598 lines (503 loc) · 12.2 KB
/
DerEncoder.cs
File metadata and controls
598 lines (503 loc) · 12.2 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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
namespace Waher.Security.PKCS
{
/// <summary>
/// Type class
/// </summary>
public enum Asn1TypeClass
{
/// <summary>
/// Native to ASN.1
/// </summary>
Universal = 0,
/// <summary>
/// Only valid for a specific application.
/// </summary>
Application = 1,
/// <summary>
/// Depends on the context.
/// </summary>
ContextSpecific = 2,
/// <summary>
/// Defined in private specifications.
/// </summary>
Private = 3
}
/// <summary>
/// Encodes data using the Distinguished Encoding Rules (DER), as defined in X.690
/// </summary>
public class DerEncoder : IDisposable
{
private MemoryStream output = new MemoryStream();
private LinkedList<KeyValuePair<byte, MemoryStream>> stack = null;
/// <summary>
/// Encodes data using the Distinguished Encoding Rules (DER), as defined in X.690
/// </summary>
public DerEncoder()
{
}
/// <summary>
/// <see cref="IDisposable.Dispose"/>
/// </summary>
public void Dispose()
{
this.output?.Dispose();
this.output = null;
}
/// <summary>
/// Clears the output buffer.
/// </summary>
public void Clear()
{
this.output.Position = 0;
this.output.SetLength(0);
}
/// <summary>
/// Converts the generated output to a byte arary.
/// </summary>
/// <returns>Byte array.</returns>
public byte[] ToArray()
{
if (!(this.stack is null) && !(this.stack.First is null))
throw new Exception("DER output not properly closed.");
return this.output.ToArray();
}
/// <summary>
/// Encodes an BOOLEAN value.
/// </summary>
/// <param name="Value">BOOLEAN value.</param>
public void BOOLEAN(bool Value)
{
this.output.WriteByte(1);
this.output.WriteByte(1);
if (Value)
this.output.WriteByte(0xff);
else
this.output.WriteByte(0x00);
}
/// <summary>
/// Encodes an INTEGER value.
/// </summary>
/// <param name="Value">INTEGER value.</param>
public void INTEGER(long Value)
{
this.output.WriteByte(2);
int Pos = (int)this.output.Position;
int c = 8;
byte b;
this.output.WriteByte(0);
if (Value < 0)
{
do
{
b = (byte)(Value >> 56);
Value <<= 8;
c--;
}
while (b == 0xff);
if (b < 0x80)
this.output.WriteByte(0xff);
this.output.WriteByte(b);
while (c-- > 0)
{
b = (byte)(Value >> 56);
this.output.WriteByte(b);
Value <<= 8;
}
}
else if (Value == 0)
this.output.WriteByte(0);
else
{
do
{
b = (byte)(Value >> 56);
Value <<= 8;
c--;
}
while (b == 0);
if (b >= 0x80)
this.output.WriteByte(0);
this.output.WriteByte(b);
while (c-- > 0)
{
b = (byte)(Value >> 56);
this.output.WriteByte(b);
Value <<= 8;
}
}
this[Pos] = (byte)(this.output.Position - Pos - 1);
}
/// <summary>
/// Encodes an INTEGER value.
/// </summary>
/// <param name="Value">INTEGER value.</param>
/// <param name="Negative">If the value is negative.</param>
public void INTEGER(byte[] Value, bool Negative)
{
this.output.WriteByte(2);
if (Negative)
{
if (Value is null || Value.Length == 0)
Value = new byte[] { 0xff };
else if (Value[0] < 0x80)
{
int c = Value.Length;
byte[] Value2 = new byte[c + 1];
Value2[0] = 0xff;
Buffer.BlockCopy(Value, 0, Value2, 1, Value.Length);
Value = Value2;
}
}
else
{
if (Value is null || Value.Length == 0)
Value = new byte[] { 0 };
else if (Value[0] >= 0x80)
{
int c = Value.Length;
byte[] Value2 = new byte[c + 1];
Value2[0] = 0;
Buffer.BlockCopy(Value, 0, Value2, 1, Value.Length);
Value = Value2;
}
}
this.EncodeBinary(Value);
}
private void EncodeBinary(byte[] Bin)
{
int Len = Bin.Length;
if (Len >= 0x80)
{
if (Len <= 0xff)
this.output.WriteByte(0x81);
else
{
if (Len <= 0xffff)
this.output.WriteByte(0x82);
else
{
if (Len <= 0xffffff)
this.output.WriteByte(0x83);
else
{
this.output.WriteByte(0x84);
this.output.WriteByte((byte)(Len >> 24));
}
this.output.WriteByte((byte)(Len >> 16));
}
this.output.WriteByte((byte)(Len >> 8));
}
}
this.output.WriteByte((byte)Len);
this.output.Write(Bin, 0, Bin.Length);
}
/// <summary>
/// Encodes an BITSTRING value.
/// </summary>
/// <param name="Bits">BITSTRING value.</param>
public void BITSTRING(BitArray Bits)
{
this.output.WriteByte(3);
int NrBits = Bits.Length;
int Len = (NrBits + 7) / 8 + 1;
int NrUnusedBits = 8 - (NrBits & 7);
byte[] Bin = new byte[Len];
byte b = 0;
int i, j = 0;
if (NrUnusedBits == 8)
NrUnusedBits = 0;
Bin[j++] = (byte)NrUnusedBits;
for (i = 0; i < NrBits; i++)
{
b <<= 1;
if (Bits[i])
b |= 1;
if ((i & 7) == 7)
Bin[j++] = b;
}
if (NrUnusedBits > 0)
{
b <<= NrUnusedBits;
Bin[j++] = b;
}
this.EncodeBinary(Bin);
}
/// <summary>
/// Encodes an BITSTRING value.
/// </summary>
/// <param name="Bytes">Bytes containing BITSTRING value.</param>
public void BITSTRING(byte[] Bytes)
{
this.output.WriteByte(3);
int c = Bytes.Length;
byte[] Bytes2 = new byte[c + 1];
Bytes2[0] = 0; // Unused bits.
Buffer.BlockCopy(Bytes, 0, Bytes2, 1, c);
this.EncodeBinary(Bytes2);
}
/// <summary>
/// Starts a BITSTRING.
/// </summary>
public void StartBITSTRING()
{
this.Start(3);
this.output.WriteByte(0);
}
/// <summary>
/// Ends the current BITSTRING.
/// </summary>
public void EndBITSTRING()
{
this.End(3);
}
/// <summary>
/// Encodes an OCTET STRING value.
/// </summary>
/// <param name="Value">OCTET STRING value.</param>
public void OCTET_STRING(byte[] Value)
{
this.output.WriteByte(4);
this.EncodeBinary(Value);
}
/// <summary>
/// Starts a OCTET_STRING.
/// </summary>
public void StartOCTET_STRING()
{
this.Start(4);
}
/// <summary>
/// Ends the current OCTET_STRING.
/// </summary>
public void EndOCTET_STRING()
{
this.End(4);
}
/// <summary>
/// Encodes an NULL value.
/// </summary>
public void NULL()
{
this.output.WriteByte(5);
this.output.WriteByte(0);
}
/// <summary>
/// Encodes an OBJECT IDENTIFIER value.
/// </summary>
/// <param name="OID">OBJECT IDENTIFIER value.</param>
public void OBJECT_IDENTIFIER(string OID)
{
string[] s = OID.Split('.');
int i, c = s.Length;
uint[] OID2 = new uint[c];
for (i = 0; i < c; i++)
{
if (!uint.TryParse(s[i], out OID2[i]))
throw new ArgumentException("Invalid object identifier.", nameof(OID));
}
this.OBJECT_IDENTIFIER(OID2);
}
/// <summary>
/// Encodes an OBJECT IDENTIFIER value.
/// </summary>
/// <param name="OID">OBJECT IDENTIFIER value.</param>
public void OBJECT_IDENTIFIER(uint[] OID)
{
int i, c = OID.Length;
uint j;
if (c < 2)
throw new ArgumentException("Invalid length of OID.", nameof(OID));
if (OID[1] >= 40)
throw new ArgumentException("Invalid second integer in OID.", nameof(OID));
j = OID[0] * 40;
if (j > 255 || j + OID[1] > 255)
throw new ArgumentException("Invalid first integer in OID.", nameof(OID));
j += OID[1];
using (MemoryStream Bin = new MemoryStream())
{
Bin.WriteByte((byte)j);
for (i = 2; i < c; i++)
{
j = OID[i];
if (j >= 0x10000000)
Bin.WriteByte((byte)(128 + (j >> 28)));
if (j >= 0x200000)
Bin.WriteByte((byte)(128 + (j >> 21)));
if (j >= 0x4000)
Bin.WriteByte((byte)(128 + (j >> 14)));
if (j >= 0x80)
Bin.WriteByte((byte)(128 + (j >> 7)));
Bin.WriteByte((byte)(j & 127));
}
this.output.WriteByte(6);
this.EncodeBinary(Bin.ToArray());
}
}
/// <summary>
/// Encodes a UNICODE STRING (BMPString) value.
/// </summary>
/// <param name="Value">UNICODE STRING (BMPString) value.</param>
public void UNICODE_STRING(string Value)
{
this.output.WriteByte(0x1e);
this.EncodeBinary(Encoding.BigEndianUnicode.GetBytes(Value));
}
/// <summary>
/// Encodes an IA5 STRING value.
/// </summary>
/// <param name="Value">IA5 STRING value.</param>
public void IA5_STRING(string Value)
{
this.output.WriteByte(0x16);
this.EncodeBinary(Encoding.ASCII.GetBytes(Value));
}
/// <summary>
/// Encodes an PRINTABLE STRING value.
/// </summary>
/// <param name="Value">PRINTABLE STRING value.</param>
public void PRINTABLE_STRING(string Value)
{
if (!IsPrintable(Value))
throw new ArgumentException("Not a printable string.", nameof(Value));
this.output.WriteByte(0x13);
this.EncodeBinary(Encoding.ASCII.GetBytes(Value));
}
/// <summary>
/// Checks if a string is a printable string.
/// </summary>
/// <param name="Value">Value to check.</param>
/// <returns>If the string is a printable string or not.</returns>
public static bool IsPrintable(string Value)
{
return PrintableString.IsMatch(Value);
}
private static readonly Regex PrintableString = new Regex("^[A-Za-z0-9 '()+,-./:=?]*$", RegexOptions.Singleline | RegexOptions.Compiled);
/// <summary>
/// Encodes an UTF-8 STRING value.
/// </summary>
/// <param name="Value">UTF-8 STRING value.</param>
public void UTF8_STRING(string Value)
{
this.output.WriteByte(0x0c);
this.EncodeBinary(Encoding.UTF8.GetBytes(Value));
}
/// <summary>
/// Starts a SEQUENCE.
/// </summary>
public void StartSEQUENCE()
{
this.Start(0x30);
}
private void Start(byte Expected)
{
if (this.stack is null)
this.stack = new LinkedList<KeyValuePair<byte, MemoryStream>>();
this.stack.AddLast(new KeyValuePair<byte, MemoryStream>(Expected, this.output));
this.output = new MemoryStream();
}
/// <summary>
/// Ends the current SEQUENCE.
/// </summary>
public void EndSEQUENCE()
{
this.End(0x30);
}
private void End(byte Type)
{
if (this.stack is null || this.stack.Last is null)
throw new Exception("Not properly started.");
if (Type != this.stack.Last.Value.Key)
throw new Exception("Start/End type mismatch.");
byte[] Bin = this.output.ToArray();
this.output.Dispose();
this.output = this.stack.Last.Value.Value;
this.stack.RemoveLast();
this.output.WriteByte(Type);
this.EncodeBinary(Bin);
}
/// <summary>
/// Starts a SET.
/// </summary>
public void StartSET()
{
this.Start(0x31);
}
/// <summary>
/// Ends the current SET.
/// </summary>
public void EndSET()
{
this.End(0x31);
}
/// <summary>
/// Encodes content to the output.
/// </summary>
/// <param name="Class">Class</param>
public void Content(Asn1TypeClass Class)
{
this.output.WriteByte((byte)((((int)Class) << 6) | 0x20));
this.output.WriteByte(0);
}
/// <summary>
/// Starts a content section.
/// </summary>
/// <param name="Class">Class</param>
public void StartContent(Asn1TypeClass Class)
{
this.Start((byte)((((int)Class) << 6) | 0x20));
}
/// <summary>
/// Ends the current Content section.
/// </summary>
/// <param name="Class">Class</param>
public void EndContent(Asn1TypeClass Class)
{
this.End((byte)((((int)Class) << 6) | 0x20));
}
/// <summary>
/// Adds DER-encoded bytes to the output.
/// </summary>
/// <param name="DerEncodedBytes">DER encoded bytes.</param>
public void Raw(byte[] DerEncodedBytes)
{
this.output.Write(DerEncodedBytes, 0, DerEncodedBytes.Length);
}
/// <summary>
/// Current output position.
/// </summary>
public int Position
{
get { return (int)this.output.Position; }
}
/// <summary>
/// Access to binary output.
/// </summary>
/// <param name="Index">Zero-based index into generated output.</param>
/// <returns>Binary byte at position.</returns>
public byte this[int Index]
{
get
{
long PosBak = this.output.Position;
byte Result;
this.output.Position = Index;
Result = (byte)this.output.ReadByte();
this.output.Position = PosBak;
return Result;
}
set
{
long PosBak = this.output.Position;
this.output.Position = Index;
this.output.WriteByte(value);
this.output.Position = PosBak;
}
}
}
}