-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaes.cpp
More file actions
855 lines (754 loc) · 31.2 KB
/
aes.cpp
File metadata and controls
855 lines (754 loc) · 31.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
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
// Robert McInvale
// rrm2754
// AES encryption project
// CS 361
#include <iostream>
#include <fstream>
#include <string>
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <getopt.h>
#include <stdexcept>
#include <algorithm>
#include <iomanip>
using namespace std;
namespace aes{
// 4 bytes, used in the key expansion
struct Word {
unsigned char one, two, three, four;
Word(char firstword, char secondword, char thirdword, char fourthword){
one = firstword;
two = secondword;
three = thirdword;
four = fourthword;
}
Word(){}
};
}
using namespace aes;
const int kNb = 4; // number of columns & rows in state per standard
// sboxes for SubByte and its inverse
const int kSBox[256] =
{0x63 ,0x7c ,0x77 ,0x7b ,0xf2 ,0x6b ,0x6f ,0xc5 ,0x30 ,0x01 ,0x67 ,0x2b ,0xfe ,0xd7 ,0xab ,0x76
,0xca ,0x82 ,0xc9 ,0x7d ,0xfa ,0x59 ,0x47 ,0xf0 ,0xad ,0xd4 ,0xa2 ,0xaf ,0x9c ,0xa4 ,0x72 ,0xc0
,0xb7 ,0xfd ,0x93 ,0x26 ,0x36 ,0x3f ,0xf7 ,0xcc ,0x34 ,0xa5 ,0xe5 ,0xf1 ,0x71 ,0xd8 ,0x31 ,0x15
,0x04 ,0xc7 ,0x23 ,0xc3 ,0x18 ,0x96 ,0x05 ,0x9a ,0x07 ,0x12 ,0x80 ,0xe2 ,0xeb ,0x27 ,0xb2 ,0x75
,0x09 ,0x83 ,0x2c ,0x1a ,0x1b ,0x6e ,0x5a ,0xa0 ,0x52 ,0x3b ,0xd6 ,0xb3 ,0x29 ,0xe3 ,0x2f ,0x84
,0x53 ,0xd1 ,0x00 ,0xed ,0x20 ,0xfc ,0xb1 ,0x5b ,0x6a ,0xcb ,0xbe ,0x39 ,0x4a ,0x4c ,0x58 ,0xcf
,0xd0 ,0xef ,0xaa ,0xfb ,0x43 ,0x4d ,0x33 ,0x85 ,0x45 ,0xf9 ,0x02 ,0x7f ,0x50 ,0x3c ,0x9f ,0xa8
,0x51 ,0xa3 ,0x40 ,0x8f ,0x92 ,0x9d ,0x38 ,0xf5 ,0xbc ,0xb6 ,0xda ,0x21 ,0x10 ,0xff ,0xf3 ,0xd2
,0xcd ,0x0c ,0x13 ,0xec ,0x5f ,0x97 ,0x44 ,0x17 ,0xc4 ,0xa7 ,0x7e ,0x3d ,0x64 ,0x5d ,0x19 ,0x73
,0x60 ,0x81 ,0x4f ,0xdc ,0x22 ,0x2a ,0x90 ,0x88 ,0x46 ,0xee ,0xb8 ,0x14 ,0xde ,0x5e ,0x0b ,0xdb
,0xe0 ,0x32 ,0x3a ,0x0a ,0x49 ,0x06 ,0x24 ,0x5c ,0xc2 ,0xd3 ,0xac ,0x62 ,0x91 ,0x95 ,0xe4 ,0x79
,0xe7 ,0xc8 ,0x37 ,0x6d ,0x8d ,0xd5 ,0x4e ,0xa9 ,0x6c ,0x56 ,0xf4 ,0xea ,0x65 ,0x7a ,0xae ,0x08
,0xba ,0x78 ,0x25 ,0x2e ,0x1c ,0xa6 ,0xb4 ,0xc6 ,0xe8 ,0xdd ,0x74 ,0x1f ,0x4b ,0xbd ,0x8b ,0x8a
,0x70 ,0x3e ,0xb5 ,0x66 ,0x48 ,0x03 ,0xf6 ,0x0e ,0x61 ,0x35 ,0x57 ,0xb9 ,0x86 ,0xc1 ,0x1d ,0x9e
,0xe1 ,0xf8 ,0x98 ,0x11 ,0x69 ,0xd9 ,0x8e ,0x94 ,0x9b ,0x1e ,0x87 ,0xe9 ,0xce ,0x55 ,0x28 ,0xdf
,0x8c ,0xa1 ,0x89 ,0x0d ,0xbf ,0xe6 ,0x42 ,0x68 ,0x41 ,0x99 ,0x2d ,0x0f ,0xb0 ,0x54 ,0xbb ,0x16};
const int kInverseSBox[256] =
{0x52 ,0x09 ,0x6a ,0xd5 ,0x30 ,0x36 ,0xa5 ,0x38 ,0xbf ,0x40 ,0xa3 ,0x9e ,0x81 ,0xf3 ,0xd7 ,0xfb
,0x7c ,0xe3 ,0x39 ,0x82 ,0x9b ,0x2f ,0xff ,0x87 ,0x34 ,0x8e ,0x43 ,0x44 ,0xc4 ,0xde ,0xe9 ,0xcb
,0x54 ,0x7b ,0x94 ,0x32 ,0xa6 ,0xc2 ,0x23 ,0x3d ,0xee ,0x4c ,0x95 ,0x0b ,0x42 ,0xfa ,0xc3 ,0x4e
,0x08 ,0x2e ,0xa1 ,0x66 ,0x28 ,0xd9 ,0x24 ,0xb2 ,0x76 ,0x5b ,0xa2 ,0x49 ,0x6d ,0x8b ,0xd1 ,0x25
,0x72 ,0xf8 ,0xf6 ,0x64 ,0x86 ,0x68 ,0x98 ,0x16 ,0xd4 ,0xa4 ,0x5c ,0xcc ,0x5d ,0x65 ,0xb6 ,0x92
,0x6c ,0x70 ,0x48 ,0x50 ,0xfd ,0xed ,0xb9 ,0xda ,0x5e ,0x15 ,0x46 ,0x57 ,0xa7 ,0x8d ,0x9d ,0x84
,0x90 ,0xd8 ,0xab ,0x00 ,0x8c ,0xbc ,0xd3 ,0x0a ,0xf7 ,0xe4 ,0x58 ,0x05 ,0xb8 ,0xb3 ,0x45 ,0x06
,0xd0 ,0x2c ,0x1e ,0x8f ,0xca ,0x3f ,0x0f ,0x02 ,0xc1 ,0xaf ,0xbd ,0x03 ,0x01 ,0x13 ,0x8a ,0x6b
,0x3a ,0x91 ,0x11 ,0x41 ,0x4f ,0x67 ,0xdc ,0xea ,0x97 ,0xf2 ,0xcf ,0xce ,0xf0 ,0xb4 ,0xe6 ,0x73
,0x96 ,0xac ,0x74 ,0x22 ,0xe7 ,0xad ,0x35 ,0x85 ,0xe2 ,0xf9 ,0x37 ,0xe8 ,0x1c ,0x75 ,0xdf ,0x6e
,0x47 ,0xf1 ,0x1a ,0x71 ,0x1d ,0x29 ,0xc5 ,0x89 ,0x6f ,0xb7 ,0x62 ,0x0e ,0xaa ,0x18 ,0xbe ,0x1b
,0xfc ,0x56 ,0x3e ,0x4b ,0xc6 ,0xd2 ,0x79 ,0x20 ,0x9a ,0xdb ,0xc0 ,0xfe ,0x78 ,0xcd ,0x5a ,0xf4
,0x1f ,0xdd ,0xa8 ,0x33 ,0x88 ,0x07 ,0xc7 ,0x31 ,0xb1 ,0x12 ,0x10 ,0x59 ,0x27 ,0x80 ,0xec ,0x5f
,0x60 ,0x51 ,0x7f ,0xa9 ,0x19 ,0xb5 ,0x4a ,0x0d ,0x2d ,0xe5 ,0x7a ,0x9f ,0x93 ,0xc9 ,0x9c ,0xef
,0xa0 ,0xe0 ,0x3b ,0x4d ,0xae ,0x2a ,0xf5 ,0xb0 ,0xc8 ,0xeb ,0xbb ,0x3c ,0x83 ,0x53 ,0x99 ,0x61
,0x17 ,0x2b ,0x04 ,0x7e ,0xba ,0x77 ,0xd6 ,0x26 ,0xe1 ,0x69 ,0x14 ,0x63 ,0x55 ,0x21 ,0x0c ,0x7d};
// multiplication tables for AES's version of multiplication
const int kMul2[256] = {
0x00, 0x02, 0x04, 0x06, 0x08, 0x0a, 0x0c, 0x0e, 0x10, 0x12, 0x14, 0x16, 0x18, 0x1a, 0x1c, 0x1e,
0x20, 0x22, 0x24, 0x26, 0x28, 0x2a, 0x2c, 0x2e, 0x30, 0x32, 0x34, 0x36, 0x38, 0x3a, 0x3c, 0x3e,
0x40, 0x42, 0x44, 0x46, 0x48, 0x4a, 0x4c, 0x4e, 0x50, 0x52, 0x54, 0x56, 0x58, 0x5a, 0x5c, 0x5e,
0x60, 0x62, 0x64, 0x66, 0x68, 0x6a, 0x6c, 0x6e, 0x70, 0x72, 0x74, 0x76, 0x78, 0x7a, 0x7c, 0x7e,
0x80, 0x82, 0x84, 0x86, 0x88, 0x8a, 0x8c, 0x8e, 0x90, 0x92, 0x94, 0x96, 0x98, 0x9a, 0x9c, 0x9e,
0xa0, 0xa2, 0xa4, 0xa6, 0xa8, 0xaa, 0xac, 0xae, 0xb0, 0xb2, 0xb4, 0xb6, 0xb8, 0xba, 0xbc, 0xbe,
0xc0, 0xc2, 0xc4, 0xc6, 0xc8, 0xca, 0xcc, 0xce, 0xd0, 0xd2, 0xd4, 0xd6, 0xd8, 0xda, 0xdc, 0xde,
0xe0, 0xe2, 0xe4, 0xe6, 0xe8, 0xea, 0xec, 0xee, 0xf0, 0xf2, 0xf4, 0xf6, 0xf8, 0xfa, 0xfc, 0xfe,
0x1b, 0x19, 0x1f, 0x1d, 0x13, 0x11, 0x17, 0x15, 0x0b, 0x09, 0x0f, 0x0d, 0x03, 0x01, 0x07, 0x05,
0x3b, 0x39, 0x3f, 0x3d, 0x33, 0x31, 0x37, 0x35, 0x2b, 0x29, 0x2f, 0x2d, 0x23, 0x21, 0x27, 0x25,
0x5b, 0x59, 0x5f, 0x5d, 0x53, 0x51, 0x57, 0x55, 0x4b, 0x49, 0x4f, 0x4d, 0x43, 0x41, 0x47, 0x45,
0x7b, 0x79, 0x7f, 0x7d, 0x73, 0x71, 0x77, 0x75, 0x6b, 0x69, 0x6f, 0x6d, 0x63, 0x61, 0x67, 0x65,
0x9b, 0x99, 0x9f, 0x9d, 0x93, 0x91, 0x97, 0x95, 0x8b, 0x89, 0x8f, 0x8d, 0x83, 0x81, 0x87, 0x85,
0xbb, 0xb9, 0xbf, 0xbd, 0xb3, 0xb1, 0xb7, 0xb5, 0xab, 0xa9, 0xaf, 0xad, 0xa3, 0xa1, 0xa7, 0xa5,
0xdb, 0xd9, 0xdf, 0xdd, 0xd3, 0xd1, 0xd7, 0xd5, 0xcb, 0xc9, 0xcf, 0xcd, 0xc3, 0xc1, 0xc7, 0xc5,
0xfb, 0xf9, 0xff, 0xfd, 0xf3, 0xf1, 0xf7, 0xf5, 0xeb, 0xe9, 0xef, 0xed, 0xe3, 0xe1, 0xe7, 0xe5,
};
const int kMul3[256]={
0x00, 0x03, 0x06, 0x05, 0x0c, 0x0f, 0x0a, 0x09, 0x18, 0x1b, 0x1e, 0x1d, 0x14, 0x17, 0x12, 0x11,
0x30, 0x33, 0x36, 0x35, 0x3c, 0x3f, 0x3a, 0x39, 0x28, 0x2b, 0x2e, 0x2d, 0x24, 0x27, 0x22, 0x21,
0x60, 0x63, 0x66, 0x65, 0x6c, 0x6f, 0x6a, 0x69, 0x78, 0x7b, 0x7e, 0x7d, 0x74, 0x77, 0x72, 0x71,
0x50, 0x53, 0x56, 0x55, 0x5c, 0x5f, 0x5a, 0x59, 0x48, 0x4b, 0x4e, 0x4d, 0x44, 0x47, 0x42, 0x41,
0xc0, 0xc3, 0xc6, 0xc5, 0xcc, 0xcf, 0xca, 0xc9, 0xd8, 0xdb, 0xde, 0xdd, 0xd4, 0xd7, 0xd2, 0xd1,
0xf0, 0xf3, 0xf6, 0xf5, 0xfc, 0xff, 0xfa, 0xf9, 0xe8, 0xeb, 0xee, 0xed, 0xe4, 0xe7, 0xe2, 0xe1,
0xa0, 0xa3, 0xa6, 0xa5, 0xac, 0xaf, 0xaa, 0xa9, 0xb8, 0xbb, 0xbe, 0xbd, 0xb4, 0xb7, 0xb2, 0xb1,
0x90, 0x93, 0x96, 0x95, 0x9c, 0x9f, 0x9a, 0x99, 0x88, 0x8b, 0x8e, 0x8d, 0x84, 0x87, 0x82, 0x81,
0x9b, 0x98, 0x9d, 0x9e, 0x97, 0x94, 0x91, 0x92, 0x83, 0x80, 0x85, 0x86, 0x8f, 0x8c, 0x89, 0x8a,
0xab, 0xa8, 0xad, 0xae, 0xa7, 0xa4, 0xa1, 0xa2, 0xb3, 0xb0, 0xb5, 0xb6, 0xbf, 0xbc, 0xb9, 0xba,
0xfb, 0xf8, 0xfd, 0xfe, 0xf7, 0xf4, 0xf1, 0xf2, 0xe3, 0xe0, 0xe5, 0xe6, 0xef, 0xec, 0xe9, 0xea,
0xcb, 0xc8, 0xcd, 0xce, 0xc7, 0xc4, 0xc1, 0xc2, 0xd3, 0xd0, 0xd5, 0xd6, 0xdf, 0xdc, 0xd9, 0xda,
0x5b, 0x58, 0x5d, 0x5e, 0x57, 0x54, 0x51, 0x52, 0x43, 0x40, 0x45, 0x46, 0x4f, 0x4c, 0x49, 0x4a,
0x6b, 0x68, 0x6d, 0x6e, 0x67, 0x64, 0x61, 0x62, 0x73, 0x70, 0x75, 0x76, 0x7f, 0x7c, 0x79, 0x7a,
0x3b, 0x38, 0x3d, 0x3e, 0x37, 0x34, 0x31, 0x32, 0x23, 0x20, 0x25, 0x26, 0x2f, 0x2c, 0x29, 0x2a,
0x0b, 0x08, 0x0d, 0x0e, 0x07, 0x04, 0x01, 0x02, 0x13, 0x10, 0x15, 0x16, 0x1f, 0x1c, 0x19, 0x1a,
};
const int kMul9[256] ={
0x00, 0x09, 0x12, 0x1b, 0x24, 0x2d, 0x36, 0x3f, 0x48, 0x41, 0x5a, 0x53, 0x6c, 0x65, 0x7e, 0x77,
0x90, 0x99, 0x82, 0x8b, 0xb4, 0xbd, 0xa6, 0xaf, 0xd8, 0xd1, 0xca, 0xc3, 0xfc, 0xf5, 0xee, 0xe7,
0x3b, 0x32, 0x29, 0x20, 0x1f, 0x16, 0x0d, 0x04, 0x73, 0x7a, 0x61, 0x68, 0x57, 0x5e, 0x45, 0x4c,
0xab, 0xa2, 0xb9, 0xb0, 0x8f, 0x86, 0x9d, 0x94, 0xe3, 0xea, 0xf1, 0xf8, 0xc7, 0xce, 0xd5, 0xdc,
0x76, 0x7f, 0x64, 0x6d, 0x52, 0x5b, 0x40, 0x49, 0x3e, 0x37, 0x2c, 0x25, 0x1a, 0x13, 0x08, 0x01,
0xe6, 0xef, 0xf4, 0xfd, 0xc2, 0xcb, 0xd0, 0xd9, 0xae, 0xa7, 0xbc, 0xb5, 0x8a, 0x83, 0x98, 0x91,
0x4d, 0x44, 0x5f, 0x56, 0x69, 0x60, 0x7b, 0x72, 0x05, 0x0c, 0x17, 0x1e, 0x21, 0x28, 0x33, 0x3a,
0xdd, 0xd4, 0xcf, 0xc6, 0xf9, 0xf0, 0xeb, 0xe2, 0x95, 0x9c, 0x87, 0x8e, 0xb1, 0xb8, 0xa3, 0xaa,
0xec, 0xe5, 0xfe, 0xf7, 0xc8, 0xc1, 0xda, 0xd3, 0xa4, 0xad, 0xb6, 0xbf, 0x80, 0x89, 0x92, 0x9b,
0x7c, 0x75, 0x6e, 0x67, 0x58, 0x51, 0x4a, 0x43, 0x34, 0x3d, 0x26, 0x2f, 0x10, 0x19, 0x02, 0x0b,
0xd7, 0xde, 0xc5, 0xcc, 0xf3, 0xfa, 0xe1, 0xe8, 0x9f, 0x96, 0x8d, 0x84, 0xbb, 0xb2, 0xa9, 0xa0,
0x47, 0x4e, 0x55, 0x5c, 0x63, 0x6a, 0x71, 0x78, 0x0f, 0x06, 0x1d, 0x14, 0x2b, 0x22, 0x39, 0x30,
0x9a, 0x93, 0x88, 0x81, 0xbe, 0xb7, 0xac, 0xa5, 0xd2, 0xdb, 0xc0, 0xc9, 0xf6, 0xff, 0xe4, 0xed,
0x0a, 0x03, 0x18, 0x11, 0x2e, 0x27, 0x3c, 0x35, 0x42, 0x4b, 0x50, 0x59, 0x66, 0x6f, 0x74, 0x7d,
0xa1, 0xa8, 0xb3, 0xba, 0x85, 0x8c, 0x97, 0x9e, 0xe9, 0xe0, 0xfb, 0xf2, 0xcd, 0xc4, 0xdf, 0xd6,
0x31, 0x38, 0x23, 0x2a, 0x15, 0x1c, 0x07, 0x0e, 0x79, 0x70, 0x6b, 0x62, 0x5d, 0x54, 0x4f, 0x46,
};
const int kMul11[256] = {
0x00, 0x0b, 0x16, 0x1d, 0x2c, 0x27, 0x3a, 0x31, 0x58, 0x53, 0x4e, 0x45, 0x74, 0x7f, 0x62, 0x69,
0xb0, 0xbb, 0xa6, 0xad, 0x9c, 0x97, 0x8a, 0x81, 0xe8, 0xe3, 0xfe, 0xf5, 0xc4, 0xcf, 0xd2, 0xd9,
0x7b, 0x70, 0x6d, 0x66, 0x57, 0x5c, 0x41, 0x4a, 0x23, 0x28, 0x35, 0x3e, 0x0f, 0x04, 0x19, 0x12,
0xcb, 0xc0, 0xdd, 0xd6, 0xe7, 0xec, 0xf1, 0xfa, 0x93, 0x98, 0x85, 0x8e, 0xbf, 0xb4, 0xa9, 0xa2,
0xf6, 0xfd, 0xe0, 0xeb, 0xda, 0xd1, 0xcc, 0xc7, 0xae, 0xa5, 0xb8, 0xb3, 0x82, 0x89, 0x94, 0x9f,
0x46, 0x4d, 0x50, 0x5b, 0x6a, 0x61, 0x7c, 0x77, 0x1e, 0x15, 0x08, 0x03, 0x32, 0x39, 0x24, 0x2f,
0x8d, 0x86, 0x9b, 0x90, 0xa1, 0xaa, 0xb7, 0xbc, 0xd5, 0xde, 0xc3, 0xc8, 0xf9, 0xf2, 0xef, 0xe4,
0x3d, 0x36, 0x2b, 0x20, 0x11, 0x1a, 0x07, 0x0c, 0x65, 0x6e, 0x73, 0x78, 0x49, 0x42, 0x5f, 0x54,
0xf7, 0xfc, 0xe1, 0xea, 0xdb, 0xd0, 0xcd, 0xc6, 0xaf, 0xa4, 0xb9, 0xb2, 0x83, 0x88, 0x95, 0x9e,
0x47, 0x4c, 0x51, 0x5a, 0x6b, 0x60, 0x7d, 0x76, 0x1f, 0x14, 0x09, 0x02, 0x33, 0x38, 0x25, 0x2e,
0x8c, 0x87, 0x9a, 0x91, 0xa0, 0xab, 0xb6, 0xbd, 0xd4, 0xdf, 0xc2, 0xc9, 0xf8, 0xf3, 0xee, 0xe5,
0x3c, 0x37, 0x2a, 0x21, 0x10, 0x1b, 0x06, 0x0d, 0x64, 0x6f, 0x72, 0x79, 0x48, 0x43, 0x5e, 0x55,
0x01, 0x0a, 0x17, 0x1c, 0x2d, 0x26, 0x3b, 0x30, 0x59, 0x52, 0x4f, 0x44, 0x75, 0x7e, 0x63, 0x68,
0xb1, 0xba, 0xa7, 0xac, 0x9d, 0x96, 0x8b, 0x80, 0xe9, 0xe2, 0xff, 0xf4, 0xc5, 0xce, 0xd3, 0xd8,
0x7a, 0x71, 0x6c, 0x67, 0x56, 0x5d, 0x40, 0x4b, 0x22, 0x29, 0x34, 0x3f, 0x0e, 0x05, 0x18, 0x13,
0xca, 0xc1, 0xdc, 0xd7, 0xe6, 0xed, 0xf0, 0xfb, 0x92, 0x99, 0x84, 0x8f, 0xbe, 0xb5, 0xa8, 0xa3,
};
const int kMul13[256]= {
0x00, 0x0d, 0x1a, 0x17, 0x34, 0x39, 0x2e, 0x23, 0x68, 0x65, 0x72, 0x7f, 0x5c, 0x51, 0x46, 0x4b,
0xd0, 0xdd, 0xca, 0xc7, 0xe4, 0xe9, 0xfe, 0xf3, 0xb8, 0xb5, 0xa2, 0xaf, 0x8c, 0x81, 0x96, 0x9b,
0xbb, 0xb6, 0xa1, 0xac, 0x8f, 0x82, 0x95, 0x98, 0xd3, 0xde, 0xc9, 0xc4, 0xe7, 0xea, 0xfd, 0xf0,
0x6b, 0x66, 0x71, 0x7c, 0x5f, 0x52, 0x45, 0x48, 0x03, 0x0e, 0x19, 0x14, 0x37, 0x3a, 0x2d, 0x20,
0x6d, 0x60, 0x77, 0x7a, 0x59, 0x54, 0x43, 0x4e, 0x05, 0x08, 0x1f, 0x12, 0x31, 0x3c, 0x2b, 0x26,
0xbd, 0xb0, 0xa7, 0xaa, 0x89, 0x84, 0x93, 0x9e, 0xd5, 0xd8, 0xcf, 0xc2, 0xe1, 0xec, 0xfb, 0xf6,
0xd6, 0xdb, 0xcc, 0xc1, 0xe2, 0xef, 0xf8, 0xf5, 0xbe, 0xb3, 0xa4, 0xa9, 0x8a, 0x87, 0x90, 0x9d,
0x06, 0x0b, 0x1c, 0x11, 0x32, 0x3f, 0x28, 0x25, 0x6e, 0x63, 0x74, 0x79, 0x5a, 0x57, 0x40, 0x4d,
0xda, 0xd7, 0xc0, 0xcd, 0xee, 0xe3, 0xf4, 0xf9, 0xb2, 0xbf, 0xa8, 0xa5, 0x86, 0x8b, 0x9c, 0x91,
0x0a, 0x07, 0x10, 0x1d, 0x3e, 0x33, 0x24, 0x29, 0x62, 0x6f, 0x78, 0x75, 0x56, 0x5b, 0x4c, 0x41,
0x61, 0x6c, 0x7b, 0x76, 0x55, 0x58, 0x4f, 0x42, 0x09, 0x04, 0x13, 0x1e, 0x3d, 0x30, 0x27, 0x2a,
0xb1, 0xbc, 0xab, 0xa6, 0x85, 0x88, 0x9f, 0x92, 0xd9, 0xd4, 0xc3, 0xce, 0xed, 0xe0, 0xf7, 0xfa,
0xb7, 0xba, 0xad, 0xa0, 0x83, 0x8e, 0x99, 0x94, 0xdf, 0xd2, 0xc5, 0xc8, 0xeb, 0xe6, 0xf1, 0xfc,
0x67, 0x6a, 0x7d, 0x70, 0x53, 0x5e, 0x49, 0x44, 0x0f, 0x02, 0x15, 0x18, 0x3b, 0x36, 0x21, 0x2c,
0x0c, 0x01, 0x16, 0x1b, 0x38, 0x35, 0x22, 0x2f, 0x64, 0x69, 0x7e, 0x73, 0x50, 0x5d, 0x4a, 0x47,
0xdc, 0xd1, 0xc6, 0xcb, 0xe8, 0xe5, 0xf2, 0xff, 0xb4, 0xb9, 0xae, 0xa3, 0x80, 0x8d, 0x9a, 0x97,
};
const int kMul14[256] = {
0x00, 0x0e, 0x1c, 0x12, 0x38, 0x36, 0x24, 0x2a, 0x70, 0x7e, 0x6c, 0x62, 0x48, 0x46, 0x54, 0x5a,
0xe0, 0xee, 0xfc, 0xf2, 0xd8, 0xd6, 0xc4, 0xca, 0x90, 0x9e, 0x8c, 0x82, 0xa8, 0xa6, 0xb4, 0xba,
0xdb, 0xd5, 0xc7, 0xc9, 0xe3, 0xed, 0xff, 0xf1, 0xab, 0xa5, 0xb7, 0xb9, 0x93, 0x9d, 0x8f, 0x81,
0x3b, 0x35, 0x27, 0x29, 0x03, 0x0d, 0x1f, 0x11, 0x4b, 0x45, 0x57, 0x59, 0x73, 0x7d, 0x6f, 0x61,
0xad, 0xa3, 0xb1, 0xbf, 0x95, 0x9b, 0x89, 0x87, 0xdd, 0xd3, 0xc1, 0xcf, 0xe5, 0xeb, 0xf9, 0xf7,
0x4d, 0x43, 0x51, 0x5f, 0x75, 0x7b, 0x69, 0x67, 0x3d, 0x33, 0x21, 0x2f, 0x05, 0x0b, 0x19, 0x17,
0x76, 0x78, 0x6a, 0x64, 0x4e, 0x40, 0x52, 0x5c, 0x06, 0x08, 0x1a, 0x14, 0x3e, 0x30, 0x22, 0x2c,
0x96, 0x98, 0x8a, 0x84, 0xae, 0xa0, 0xb2, 0xbc, 0xe6, 0xe8, 0xfa, 0xf4, 0xde, 0xd0, 0xc2, 0xcc,
0x41, 0x4f, 0x5d, 0x53, 0x79, 0x77, 0x65, 0x6b, 0x31, 0x3f, 0x2d, 0x23, 0x09, 0x07, 0x15, 0x1b,
0xa1, 0xaf, 0xbd, 0xb3, 0x99, 0x97, 0x85, 0x8b, 0xd1, 0xdf, 0xcd, 0xc3, 0xe9, 0xe7, 0xf5, 0xfb,
0x9a, 0x94, 0x86, 0x88, 0xa2, 0xac, 0xbe, 0xb0, 0xea, 0xe4, 0xf6, 0xf8, 0xd2, 0xdc, 0xce, 0xc0,
0x7a, 0x74, 0x66, 0x68, 0x42, 0x4c, 0x5e, 0x50, 0x0a, 0x04, 0x16, 0x18, 0x32, 0x3c, 0x2e, 0x20,
0xec, 0xe2, 0xf0, 0xfe, 0xd4, 0xda, 0xc8, 0xc6, 0x9c, 0x92, 0x80, 0x8e, 0xa4, 0xaa, 0xb8, 0xb6,
0x0c, 0x02, 0x10, 0x1e, 0x34, 0x3a, 0x28, 0x26, 0x7c, 0x72, 0x60, 0x6e, 0x44, 0x4a, 0x58, 0x56,
0x37, 0x39, 0x2b, 0x25, 0x0f, 0x01, 0x13, 0x1d, 0x47, 0x49, 0x5b, 0x55, 0x7f, 0x71, 0x63, 0x6d,
0xd7, 0xd9, 0xcb, 0xc5, 0xef, 0xe1, 0xf3, 0xfd, 0xa7, 0xa9, 0xbb, 0xb5, 0x9f, 0x91, 0x83, 0x8d,
};
// round constant word array
const Word kRCon[11] =
{ Word(0,0,0,0),
Word(0x01, 0, 0, 0),
Word(0x02, 0, 0, 0),
Word(0x04, 0, 0, 0),
Word(0x08, 0, 0, 0),
Word(0x10, 0, 0, 0),
Word(0x20, 0, 0, 0),
Word(0x40, 0, 0, 0),
Word(0x80, 0, 0, 0),
Word(0x1b, 0, 0, 0),
Word(0x36, 0, 0, 0)
};
ostream& operator<< (ostream &os, const Word& w){
os << hex << setw(2) << setfill('0') << (int)w.one << setw(2) << setfill('0') << (int)w.two << setw(2) << setfill('0') << (int)w.three << setw(2) << setfill('0') << (int)w.four;
return os;
}
namespace aes {
// Print functions for debug purposes
//
// cycles through and prints hex byte values of chars from an array "data" of size "size", starting at index "start"
//
void PrintData(char* data, int size, int start = 0){
for(int i = start; i < (start + size); i++){
unsigned char c = data[i];
cout << hex << setw(2) << setfill('0') << (int)c << " ";
}
cout << endl;
}
//
// cycles through and prints hex byte values of a state "state"
//
void PrintState(char** state){
for(int row = 0; row < 4; row++){
for(int col = 0; col < kNb; col++){
unsigned char c = state[row][col];
cout << hex << setw(2) << setfill('0') << (int)c << " ";
}
cout << endl;
}
cout << endl;
}
//
// cycles through and prints hex byte values of the words contained in an array "words" of size "size"
//
void PrintWords(Word* words, int size){
for (int i = 0; i < size; i++){
cout << words[i];
if (i%6 == 0)
cout << endl;
cout << " ";
}
cout << endl;
}
//
// pad input using CMS method
// changes array "bytes" of size "size" in place, and also changes the size to match the new size
// makes input data divisible by 16 bytes
// will ALWAYS pad, even if input size is already divisible by 16
// pads with a number equal to the number of bytes padded
//
void Pad(char* bytes, long long &size){
int needed_bytes = 16 - size % 16;
for (int i = size; i < (size + needed_bytes); i++){
bytes[i] = needed_bytes;
}
size += needed_bytes;
}
//
// depads output assuming CMS method
// doesn't actually delete data (which would be difficult), just adjusts size based on the number it sees
//
void DePad(char* bytes, long long &size){
unsigned char pad = bytes[size-1];
size -= pad;
}
//
// reads starting at "start_index" from array "input" into state "state" using convention
//
void GetState(char** state, char* input, int start_index){
for (int col = 0; col < kNb; col++){
for (int row = 0; row < 4; row++){
state[row][col] = input[start_index + row + 4*col];
}
}
}
//
// reads starting at "start_index" from array of words "words" into "state
// made for debug purposes, no use in the algorithm
//
void GetState(char** state, Word* words, int start_index){
for (int col = 0; col < kNb; col++){
state[0][col] = words[start_index + col].one;
state[1][col] = words[start_index + col].two;
state[2][col] = words[start_index + col].three;
state[3][col] = words[start_index + col].four;
}
}
//
// given a state "state" and output array "output", reads the state into the output array starting at index "start_index"
//
void ReadState(char** state, char* output, int start_index){
for (int col = 0; col < kNb; col++){
for (int row = 0; row < kNb; row++){
output[start_index + row + 4*col] = state[row][col];
}
}
}
//
// returns highest 4 bits of a byte, e.g. 9 from 0x9b
//
char GetLowNibble(char c){
return (((1 << 4) - 1) & c);
}
//
// returns lowest 4 bits of a byte, e.g. b from 0x9b
//
char GetHighNibble(char c){
return (((1 << 4) - 1) & (c >> 4));
}
//
// uses the s box array to substitute a specific byte with the appropriate value
//
char SubByte(char byte){
unsigned char c = byte;
unsigned char high_nibble = GetHighNibble(byte);
unsigned char low_nibble = GetLowNibble(byte);
return kSBox[high_nibble*16 + low_nibble];
}
//
// calls SubByte() to substitute all bytes of a state
//
void SubBytes(char** state){
//cout << "SubBytes" << endl;
for (int col = 0; col < kNb; col++){
for (int row = 0; row < 4; row++){
state[row][col] = SubByte(state[row][col]);
}
}
}
//
// calls SubByte() to substitute all bytes of a 4-byte word
//
Word SubWord(Word w){
Word result;
result.one = SubByte(w.one);
result.two = SubByte(w.two);
result.three = SubByte(w.three);
result.four = SubByte(w.four);
return result;
}
//
// xors the individual bytes of two words
//
Word XorWords(Word a, Word b){
Word result;
result.one = a.one^b.one;
result.two = a.two^b.two;
result.three = a.three^b.three;
result.four = a.four^b.four;
return result;
}
//
// rotates the bytes of a word according to standard
//
Word RotWord(Word w){
Word result;
result.four = w.one;
result.three = w.four;
result.two = w.three;
result.one = w.two;
return result;
}
//
// expands the key "key" of size "nk" into a Word array "words" of length "words_length" according to AES standard
//
void ExpandKey(char* key, Word* words, int nk, int words_length){
for (int i = 0; i < nk; i++){
words[i] = Word(key[4*i], key[4*i + 1], key[4*i + 2], key[4*i + 3]);
}
Word temp;
for (int i = nk; i < words_length; i++){
temp = words[i-1];
if (i % nk == 0){
temp = XorWords(SubWord(RotWord(temp)), kRCon[i/nk]);
}
else if ((nk > 6) && ((i%nk) == 4)) {
temp = SubWord(temp);
}
words[i] = XorWords(words[i-nk], temp);
}
}
//
// simply xors two bytes
//
char Add(char a, char b){
return a^b;
}
//
// finds the appopriate multiplication table based on the first value and indexes based on the second value's nibbles
//
char Multiply(int a, char b){
const int* table;
if (a == 2)
table = kMul2;
else if (a == 3)
table = kMul3;
else if (a == 0x09)
table = kMul9;
else if (a == 0x0b)
table = kMul11;
else if (a == 0x0d)
table = kMul13;
else if (a == 0x0e)
table = kMul14;
else {
cout << "invalid multiplication coefficient" << endl;
return 0;
}
return table[GetLowNibble(b) + GetHighNibble(b)*16];
}
//
// just creates an appropriately sized state given number of columns "cols"; always 4 rows
//
char** MakeState(int cols){
char** state = new char*[4];
for(int row = 0; row < 4; row++){
state[row] = new char[cols];
}
return state;
}
//
// given state "state" and array of words "words" as well as round "round", performs the AES operation AddRoundKey
//
void AddRoundKey(char** state, Word* words, int round){
//cout << "AddRoundKey" << endl;
const int l = round*kNb;
for (int col = 0; col < kNb; col++){
state[0][col] = Add(state[0][col], words[l+col].one);
state[1][col] = Add(state[1][col], words[l+col].two);
state[2][col] = Add(state[2][col], words[l+col].three);
state[3][col] = Add(state[3][col], words[l+col].four);
}
}
//
// given state "state", performs the AES operation ShiftRows
//
void ShiftRows(char** state){
for (int row = 1; row < 4; row++){
char new_vals[kNb];
for (int col = 0; col < kNb; col++){
new_vals[col] = state[row][(col + row)%kNb];
}
for (int col = 0; col < kNb; col++){
state[row][col] = new_vals[col];
}
}
}
//
// given state "state", performs the AES operation MixColumns
//
void MixColumns(char** state){
for (int col = 0; col < kNb; col++){
char result[4]; // 4 rows
result[0] = Add(
Add(
Add(Multiply(2, state[0][col]),
Multiply(3, state[1][col]))
,state[2][col]),
state[3][col]);
result[1] = Add(
Add(
Add(state[0][col],
Multiply(2, state[1][col])),
Multiply(3, state[2][col])),
state[3][col]);
result[2] = Add(
Add(
Add(state[0][col], state[1][col]),
Multiply(2, state[2][col])),
Multiply(3, state[3][col]));
result[3] = Add(
Add(
Add(Multiply(3, state[0][col]), state[1][col]),
state[2][col]),
Multiply(2, state[3][col]));
for (int row = 0; row < 4; row++){
state[row][col] = result[row];
}
}
}
//
// main loop function for encryption
//
void EncryptCipher(char** in_state, char* raw_input, char** out_state, char* raw_output, int offset, Word* key_words, int nr){
GetState(in_state, raw_input, offset); // read into state
// start actual cipher
AddRoundKey(in_state, key_words, 0); // first round
for (int round = 1; round < nr; round++){
SubBytes(in_state);
ShiftRows(in_state);
MixColumns(in_state);
AddRoundKey(in_state, key_words, round);
}
// last round
SubBytes(in_state);
ShiftRows(in_state);
AddRoundKey(in_state, key_words, nr);
// output
ReadState(in_state, raw_output, offset);
}
//
// base function for encryption
//
void Encrypt(char* raw_input, char* raw_key, char* raw_output, int key_size, long long& input_size){
Pad(raw_input, input_size); // pad the input appropriately
const int kWordSize = 32; // 4 bytes
const int kNk = key_size/kWordSize; // standard variable, words in the key
const int kNr = kNk + 6; // standard variable, should be either 10 or 14 depending on key_size; number of rounds
if (input_size % 16 != 0 || input_size == 0){
cout << "padding size error" << endl;
return;
}
// get our key expansion (word array)
const int expanded_key_size = kNb*(kNr+1);
Word* key_word_array = new Word[expanded_key_size]; // each word is 4 bytes
ExpandKey(raw_key, key_word_array, kNk, kNb*(kNr+1)); // get expanded key
char** in_state = MakeState(kNb);
char** out_state = MakeState(kNb);
// set up main cipher loop
for (int i = 0; i < input_size; i += 16){
EncryptCipher(in_state, raw_input, out_state, raw_output, i, key_word_array, kNr);
}
}
//
// given state "state", performs the AES operation InvShiftRows, which just reverses ShiftRows
//
void InvShiftRows(char** state){
//cout << "InvShiftRows" << endl;
for (int row = 1; row < 4; row++){
char new_vals[kNb];
for (int col = 0; col < kNb; col++){
int shifted = (col - row)%kNb;
if (shifted < 0)
shifted += kNb;
//cout << "replacing column " << col << " by column " << col << "-" << row << " is column " << shifted << endl;
new_vals[col] = state[row][shifted];
}
for (int col = 0; col < kNb; col++){
state[row][col] = new_vals[col];
}
}
}
//
// uses the unverse s box array to substitute a specific byte with the appropriate value
//
char InvSubByte(char byte){
unsigned char c = byte;
unsigned char high_nibble = GetHighNibble(byte);
unsigned char low_nibble = GetLowNibble(byte);
//cout << "high nibble: " << high_nibble << ", low nibble: " << low_nibble << endl;
return kInverseSBox[high_nibble*16 + low_nibble];
}
//
// calls InvSubByte() to substitute all bytes of a state
//
void InvSubBytes(char** state){
//cout << "InvSubBytes" << endl;
for (int col = 0; col < kNb; col++){
for (int row = 0; row < 4; row++){
state[row][col] = InvSubByte(state[row][col]);
}
}
}
//
// given state "state", performs the AES operation InvMixColumns
//
void InvMixColumns(char** state){
//cout << "InvMixColumns" << endl;
for (int col = 0; col < kNb; col++){
char result[4]; // 4 rows
result[0] = Add(
Add(
Add(Multiply(0x0e, state[0][col]),
Multiply(0x0b, state[1][col])),
Multiply(0x0d, state[2][col])),
Multiply(0x09, state[3][col]));
result[1] = Add(
Add(
Add(Multiply(0x09, state[0][col]),
Multiply(0x0e, state[1][col])),
Multiply(0x0b, state[2][col])),
Multiply(0x0d, state[3][col]));
result[2] = Add(
Add(
Add(Multiply(0x0d, state[0][col]),
Multiply(0x09, state[1][col])),
Multiply(0x0e, state[2][col])),
Multiply(0x0b, state[3][col]));
result[3] = Add(
Add(
Add(Multiply(0x0b, state[0][col]),
Multiply(0x0d, state[1][col])),
Multiply(0x09, state[2][col])),
Multiply(0x0e, state[3][col]));
for (int row = 0; row < 4; row++){
state[row][col] = result[row];
}
}
}
//
// main loop function for decryption
//
void DecryptCipher(char** in_state, char* raw_input, char** out_state, char* raw_output, int offset, Word* key_words, int nr){
GetState(in_state, raw_input, offset); // read into state
// start actual cipher
AddRoundKey(in_state, key_words, nr); // invert last round
for (int round = (nr-1); round > 0; round--){
InvShiftRows(in_state);
InvSubBytes(in_state);
AddRoundKey(in_state, key_words, round);
InvMixColumns(in_state);
}
// invert first round
InvShiftRows(in_state);
InvSubBytes(in_state);
AddRoundKey(in_state, key_words, 0);
// output
ReadState(in_state, raw_output, offset);
}
// base function for decryption
void Decrypt(char* raw_input, char* raw_key, char* raw_output, int key_size, long long &input_size){
const int kWordSize = 32; // 4 bytes
const int kNk = key_size/kWordSize; // standard variable, words in the key
const int kNr = kNk + 6; // standard variable, should be either 10 or 14 depending on key_size; number of rounds
// get our key expansion (word array)
const int expanded_key_size = kNb*(kNr+1);
Word* key_word_array = new Word[expanded_key_size]; // each word is 4 bytes
ExpandKey(raw_key, key_word_array, kNk, kNb*(kNr+1)); // get expanded key
char** in_state = MakeState(kNb);
char** out_state = MakeState(kNb);
for (int i = 0; i < input_size; i += 16){
DecryptCipher(in_state, raw_input, out_state, raw_output, i, key_word_array, kNr);
}
// get rid of padding
DePad(raw_output, input_size);
}
} // end namespace
int main (int argc, char *argv[]){
int key_size = -1;
long long input_size = -1;
string key_file = "";
string input_file = "";
string output_file = "";
string mode = "";
// parse arguments
int option;
while (1) {
int this_option_optind = optind ? optind : 1;
int option_index = 0;
static struct option long_options[] = {
{"keysize", required_argument, 0, 0 },
{"keyfile", required_argument, 0, 0 },
{"inputfile", required_argument, 0, 0 },
{"outputfile", required_argument, 0, 0 },
{"mode", required_argument, 0, 0},
{0, 0, 0, 0 }
};
option = getopt_long_only(argc, argv, "", long_options, &option_index);
if (option == -1)
break;
switch (option) {
case 0:
switch (option_index){
case 0:
try {
key_size = stoi(optarg);
if (key_size != 128 && key_size != 256)
throw invalid_argument("wrong # of bits");
}
catch (...){
cout << "error reading keysize; must be 128 or 256." << endl;
return 1;
}
break;
case 1:
key_file = optarg;
break;
case 2:
input_file = optarg;
break;
case 3:
output_file = optarg;
break;
case 4:
mode = optarg;
transform(mode.begin(), mode.end(), mode.begin(), ::tolower);
if (mode != "encrypt" && mode != "decrypt"){
cout << "invalid mode, must be encrypt or decrypt." << endl;
return 1;
}
break;
}
break;
case '?':
break;
default:
printf("?? getopt returned character code 0%o ??\n", option);
}
}
if (optind < argc) {
printf("non-option ARGV-elements: ");
while (optind < argc)
printf("%s ", argv[optind++]);
printf("\n");
}
// see if they used all flags
if (key_size == -1 || key_file == "" || input_file == "" || output_file == "" || mode == ""){
cout << "Usage: ./aes --keysize <128|256> --keyfile <key file name> --inputfile <input file name> --outputfile <output file name> --mode <encrypt|decrypt>" << endl;
return 1;
}
// attempt to open files
ifstream key_file_stream, input_file_stream;
ofstream output_file_stream;
// open key
key_file_stream.open(key_file, ios::in|ios::binary|ios::ate); // open at end of file in binary read mode
if (!key_file_stream.is_open()){
cout << " failed to open key file" << endl;
return 1;
}
//cout << "seen key size: " << key_file_stream.tellg() << " bytes" << endl;
if (key_file_stream.tellg() != key_size/8){
cout << "key size mismatch, expected " << key_size << " bits, got " << key_file_stream.tellg() * 8 << " bits." << endl;
return 1;
}
key_file_stream.seekg(0, key_file_stream.beg); // go back to start of file
// open input file
input_file_stream.open(input_file, ios::in|ios::binary|ios::ate); // end of file, binary read mode
if (!input_file_stream.is_open()){
cout << " failed to open input file" << endl;
return 1;
}
input_size = input_file_stream.tellg();
//cout << "seen input size: " << input_size << " bytes" << endl;
input_file_stream.seekg(0, input_file_stream.beg); // go back to start of file
// open output file
output_file_stream.open(output_file, ios::out|ios::binary); // binary write mode
if (!output_file_stream.is_open()){
cout << " failed to open output file" << endl;
return 1;
}
// done opening, store data
char* raw_key = new char[key_size/8];
char* raw_input;
char* raw_output;
key_file_stream.read(raw_key, key_size/8);
// done storing data, call primary functions
if (mode == "encrypt"){
int increased_size = 16 - input_size%16; // needed space for padding
//cout << "size is " << input_size + increased_size << endl;
raw_input = new char[input_size + increased_size]; // add extra space for the padding
raw_output = new char[input_size + increased_size];
input_file_stream.read(raw_input, input_size);
Encrypt(raw_input, raw_key, raw_output, key_size, input_size);
}
else if (mode == "decrypt"){
raw_input = new char[input_size];
raw_output = new char[input_size];
input_file_stream.read(raw_input, input_size);
Decrypt(raw_input, raw_key, raw_output, key_size, input_size);
}
output_file_stream.write(raw_output, input_size);
cout << "Done, results written to " << output_file << endl;
input_file_stream.close();
key_file_stream.close();
output_file_stream.close();
return 0;
}