File: rijndael.5c

package info (click to toggle)
nickle 2.107
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 3,756 kB
  • sloc: ansic: 27,954; yacc: 1,874; lex: 954; sh: 204; makefile: 13; lisp: 1
file content (969 lines) | stat: -rw-r--r-- 28,655 bytes parent folder | download | duplicates (4)
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
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
public namespace Rijndael {
    /*
     * Derived from the original C reference code which had
     * the following notice
     */
    /* rijndael-alg-ref.c   v2.0   August '99
     * Reference ANSI C code
     * authors: Paulo Barreto
     *          Vincent Rijmen
     */
    /*
     ------------------------------
     Rijndael ANSI C Reference Code
     ------------------------------

     October 24, 2000

     Disclaimer


     This software package was submitted to the National Institute of Standards and
     Technology (NIST) during the Advanced Encryption Standard (AES) development
     effort by Joan Daemen and Vincent Rijmen, the developers of the Rijndael algorithm.

     This software is distributed in compliance with export regulations (see below), and
     it is intended for non-commercial use, only.   NIST does not support this software 
     and does not provide any guarantees or warranties as to its performance, fitness 
     for any particular application, or validation under the Cryptographic Module
     Validation Program (CMVP) <http://csrc.nist.gov/cryptval/>.  NIST does not accept 
     any liability associated with its use or misuse.  This software is provided as-is. 
     By accepting this software the user agrees to the terms stated herein.

     -----------------------

     Export Restrictions


     Implementations of cryptography are subject to United States Federal
     Government export controls.  Export controls on commercial encryption products 
     are administered by the Bureau of Export Administration (BXA) 
     <http://www.bxa.doc.gov/Encryption/> in the U.S. Department of Commerce. 
     Regulations governing exports of encryption are found in the Export 
     Administration Regulations (EAR), 15 C.F.R. Parts 730-774.
     */

    int[256] Logtable = {
	0,   0,  25,   1,  50,   2,  26, 198,  75, 199,  27, 104,  51, 238, 223,   3, 
	100,   4, 224,  14,  52, 141, 129, 239,  76, 113,   8, 200, 248, 105,  28, 193, 
	125, 194,  29, 181, 249, 185,  39, 106,  77, 228, 166, 114, 154, 201,   9, 120, 
	101,  47, 138,   5,  33,  15, 225,  36,  18, 240, 130,  69,  53, 147, 218, 142, 
	150, 143, 219, 189,  54, 208, 206, 148,  19,  92, 210, 241,  64,  70, 131,  56, 
	102, 221, 253,  48, 191,   6, 139,  98, 179,  37, 226, 152,  34, 136, 145,  16, 
	126, 110,  72, 195, 163, 182,  30,  66,  58, 107,  40,  84, 250, 133,  61, 186, 
	43, 121,  10,  21, 155, 159,  94, 202,  78, 212, 172, 229, 243, 115, 167,  87, 
	175,  88, 168,  80, 244, 234, 214, 116,  79, 174, 233, 213, 231, 230, 173, 232, 
	44, 215, 117, 122, 235,  22,  11, 245,  89, 203,  95, 176, 156, 169,  81, 160, 
	127,  12, 246, 111,  23, 196,  73, 236, 216,  67,  31,  45, 164, 118, 123, 183, 
	204, 187,  62,  90, 251,  96, 177, 134,  59,  82, 161, 108, 170,  85,  41, 157, 
	151, 178, 135, 144,  97, 190, 220, 252, 188, 149, 207, 205,  55,  63,  91, 209, 
	83,  57, 132,  60,  65, 162, 109,  71,  20,  42, 158,  93,  86, 242, 211, 171, 
	68,  17, 146, 217,  35,  32,  46, 137, 180, 124, 184,  38, 119, 153, 227, 165, 
	103,  74, 237, 222, 197,  49, 254,  24,  13,  99, 140, 128, 192, 247, 112,   7, 
    };

    int[256] Alogtable = {
	1,   3,   5,  15,  17,  51,  85, 255,  26,  46, 114, 150, 161, 248,  19,  53, 
	95, 225,  56,  72, 216, 115, 149, 164, 247,   2,   6,  10,  30,  34, 102, 170, 
	229,  52,  92, 228,  55,  89, 235,  38, 106, 190, 217, 112, 144, 171, 230,  49, 
	83, 245,   4,  12,  20,  60,  68, 204,  79, 209, 104, 184, 211, 110, 178, 205, 
	76, 212, 103, 169, 224,  59,  77, 215,  98, 166, 241,   8,  24,  40, 120, 136, 
	131, 158, 185, 208, 107, 189, 220, 127, 129, 152, 179, 206,  73, 219, 118, 154, 
	181, 196,  87, 249,  16,  48,  80, 240,  11,  29,  39, 105, 187, 214,  97, 163, 
	254,  25,  43, 125, 135, 146, 173, 236,  47, 113, 147, 174, 233,  32,  96, 160, 
	251,  22,  58,  78, 210, 109, 183, 194,  93, 231,  50,  86, 250,  21,  63,  65, 
	195,  94, 226,  61,  71, 201,  64, 192,  91, 237,  44, 116, 156, 191, 218, 117, 
	159, 186, 213, 100, 172, 239,  42, 126, 130, 157, 188, 223, 122, 142, 137, 128, 
	155, 182, 193,  88, 232,  35, 101, 175, 234,  37, 111, 177, 200,  67, 197,  84, 
	252,  31,  33,  99, 165, 244,   7,   9,  27,  45, 119, 153, 176, 203,  70, 202, 
	69, 207,  74, 222, 121, 139, 134, 145, 168, 227,  62,  66, 198,  81, 243,  14, 
	18,  54,  90, 238,  41, 123, 141, 140, 143, 138, 133, 148, 167, 242,  13,  23, 
	57,  75, 221, 124, 132, 151, 162, 253,  28,  36, 108, 180, 199,  82, 246,   1, 
    };

    int[256] S = {
	99, 124, 119, 123, 242, 107, 111, 197,  48,   1, 103,  43, 254, 215, 171, 118, 
	202, 130, 201, 125, 250,  89,  71, 240, 173, 212, 162, 175, 156, 164, 114, 192, 
	183, 253, 147,  38,  54,  63, 247, 204,  52, 165, 229, 241, 113, 216,  49,  21, 
	4, 199,  35, 195,  24, 150,   5, 154,   7,  18, 128, 226, 235,  39, 178, 117, 
	9, 131,  44,  26,  27, 110,  90, 160,  82,  59, 214, 179,  41, 227,  47, 132, 
	83, 209,   0, 237,  32, 252, 177,  91, 106, 203, 190,  57,  74,  76,  88, 207, 
	208, 239, 170, 251,  67,  77,  51, 133,  69, 249,   2, 127,  80,  60, 159, 168, 
	81, 163,  64, 143, 146, 157,  56, 245, 188, 182, 218,  33,  16, 255, 243, 210, 
	205,  12,  19, 236,  95, 151,  68,  23, 196, 167, 126,  61, 100,  93,  25, 115, 
	96, 129,  79, 220,  34,  42, 144, 136,  70, 238, 184,  20, 222,  94,  11, 219, 
	224,  50,  58,  10,  73,   6,  36,  92, 194, 211, 172,  98, 145, 149, 228, 121, 
	231, 200,  55, 109, 141, 213,  78, 169, 108,  86, 244, 234, 101, 122, 174,   8, 
	186, 120,  37,  46,  28, 166, 180, 198, 232, 221, 116,  31,  75, 189, 139, 138, 
	112,  62, 181, 102,  72,   3, 246,  14,  97,  53,  87, 185, 134, 193,  29, 158, 
	225, 248, 152,  17, 105, 217, 142, 148, 155,  30, 135, 233, 206,  85,  40, 223, 
	140, 161, 137,  13, 191, 230,  66, 104,  65, 153,  45,  15, 176,  84, 187,  22, 
    };

    int[256] Si = {
	82,   9, 106, 213,  48,  54, 165,  56, 191,  64, 163, 158, 129, 243, 215, 251, 
	124, 227,  57, 130, 155,  47, 255, 135,  52, 142,  67,  68, 196, 222, 233, 203, 
	84, 123, 148,  50, 166, 194,  35,  61, 238,  76, 149,  11,  66, 250, 195,  78, 
	8,  46, 161, 102,  40, 217,  36, 178, 118,  91, 162,  73, 109, 139, 209,  37, 
	114, 248, 246, 100, 134, 104, 152,  22, 212, 164,  92, 204,  93, 101, 182, 146, 
	108, 112,  72,  80, 253, 237, 185, 218,  94,  21,  70,  87, 167, 141, 157, 132, 
	144, 216, 171,   0, 140, 188, 211,  10, 247, 228,  88,   5, 184, 179,  69,   6, 
	208,  44,  30, 143, 202,  63,  15,   2, 193, 175, 189,   3,   1,  19, 138, 107, 
	58, 145,  17,  65,  79, 103, 220, 234, 151, 242, 207, 206, 240, 180, 230, 115, 
	150, 172, 116,  34, 231, 173,  53, 133, 226, 249,  55, 232,  28, 117, 223, 110, 
	71, 241,  26, 113,  29,  41, 197, 137, 111, 183,  98,  14, 170,  24, 190,  27, 
	252,  86,  62,  75, 198, 210, 121,  32, 154, 219, 192, 254, 120, 205,  90, 244, 
	31, 221, 168,  51, 136,   7, 199,  49, 177,  18,  16,  89,  39, 128, 236,  95, 
	96,  81, 127, 169,  25, 181,  74,  13,  45, 229, 122, 159, 147, 201, 156, 239, 
	160, 224,  59,  77, 174,  42, 245, 176, 200, 235, 187,  60, 131,  83, 153,  97, 
	23,  43,   4, 126, 186, 119, 214,  38, 225, 105,  20,  99,  85,  33,  12, 125, 
    };

    int[4,4] iG = {
	{ 0x0e, 0x09, 0x0d, 0x0b, },
	{ 0x0b, 0x0e, 0x09, 0x0d, },
	{ 0x0d, 0x0b, 0x0e, 0x09, },
	{ 0x09, 0x0d, 0x0b, 0x0e, },
    };

    int[30] rcon = { 
	0x01,0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36, 0x6c,
	0xd8, 0xab, 0x4d, 0x9a, 0x2f, 0x5e, 0xbc, 0x63, 0xc6, 0x97, 0x35,
	0x6a, 0xd4, 0xb3, 0x7d, 0xfa, 0xef, 0xc5, 0x91, 
    };

    int MAXBC = 256//32;
    int MAXKC = 256//32;
    int MAXROUNDS = 14;
    int TRUE = 1;
    int FALSE = 0;
    
    public typedef struct {
	int	    direction;		    /* Key used for encrypting or decrypting?*/
	int	    keyLen;		    /* length of key */
	string  keyMaterial;	    /* raw key data in ASCII */
	/* The follow parameters are algorithm dependent */
	int	    blockLen;		    /* block length */
	int[*,*,*]	keySched;	    /* key schedule */
    } keyInstance;

    public typedef struct {
	int	    mode;
	int[*]  IV;

	int	    blockLen;
    } cipherInstance;

    public int MODE_ECB = 1; 
    public int MODE_CBC = 2;
    public int MODE_CFB1 = 3;
    public int DIR_ENCRYPT = 0;
    public int DIR_DECRYPT = 1;
    public int BITSPERBLOCK = 128;
    public int MAX_KEY_SIZE = 64;
    public int MAX_IV_SIZE = BITSPERBLOCK//8;

    public exception bad_key_bits (int keyBits);
    public exception bad_block_bits (int blockBits);
    public exception internal_error ();
    public exception bad_key_dir (int direction);
    public exception bad_key_len (int keyLen);
    public exception bad_key_material (string c);
    
    namespace algorithm {

	int SC (int BC) 
	{ 
	    return ((BC - 4) >> 1); 
	};

	global int[3,4,2] shifts = {
	    { { 0, 0 }, { 1, 3 }, { 2, 2 }, { 3, 1 } },
	    { { 0, 0 }, { 1, 5 }, { 2, 4 }, { 3, 3 } },
	    { { 0, 0 }, { 1, 7 }, { 3, 5 }, { 4, 4 } }
	}; 

	int mul(int a, int b) 
	{
	    /* multiply two elements of GF(2^m)
	     * needed for MixColumn and InvMixColumn
	     */
	    if (a != 0 && b != 0) 
		return Alogtable[(Logtable[a] + Logtable[b])%255];
	    else 
		return 0;
	}

	void KeyAddition(*int[*,*]	a, 
				  *int[*,*,*]	rk,
				  int		r,
				  int		BC) 
	{
	    /* Exor corresponding text input and round key input bytes
	     */
	    int i, j;

	    for(i = 0; i < 4; i++)
		for(j = 0; j < BC; j++) 
		    a*[i,j] ^= rk*[r,i,j];
	}

	void ShiftRow(*int[*,*]    a, 
			       int	    d,
			       int	    BC) 
	{
	    /* Row 0 remains unchanged
	     * The other three rows are shifted a variable amount
	     */
	    int[BC] tmp = {};
	    int	    i, j;

	    for(i = 1; i < 4; i++) 
	    {
		for(j = 0; j < BC; j++) 
		    tmp[j] = a*[i,(j + shifts[SC(BC),i,d]) % BC];
		for(j = 0; j < BC; j++) 
		    a*[i,j] = tmp[j];
	    }
	}

	void Substitution(*int[*,*]	a, 
				   *int[*]	box,
				   int		BC) 
	{
	    /* Replace every byte of the input by the byte at that place
	     * in the nonlinear S-box
	     */
	    int i, j;

	    for(i = 0; i < 4; i++)
		for(j = 0; j < BC; j++) 
		    a*[i,j] = box*[a*[i,j]];
	}

	void MixColumn(*int[*,*]   a,
				int	    BC) 
	{
	    /* Mix the four bytes of every column in a linear way
	     */
	    int[4,BC]	b = {};
	    int		i, j;

	    for(j = 0; j < BC; j++)
		for(i = 0; i < 4; i++)
		    b[i,j] = (mul(2,a*[i,j])
			      ^ mul(3,a*[(i + 1) % 4,j])
			      ^ a*[(i + 2) % 4,j]
			      ^ a*[(i + 3) % 4,j]);
	    for(i = 0; i < 4; i++)
		for(j = 0; j < BC; j++) 
		    a*[i,j] = b[i,j];
	}

	void InvMixColumn(*int[*,*]	a,
				   int		BC) 
	{
	    /* Mix the four bytes of every column in a linear way
	     * This is the opposite operation of Mixcolumn
	     */
	    int[4,BC]	b = {};
	    int		i, j;

	    for(j = 0; j < BC; j++)
		for(i = 0; i < 4; i++)             
		    b[i,j] = (mul(0xe,a*[i,j])
			      ^ mul(0xb,a*[(i + 1) % 4,j])
			      ^ mul(0xd,a*[(i + 2) % 4,j])
			      ^ mul(0x9,a*[(i + 3) % 4,j]));
	    for(i = 0; i < 4; i++)
		for(j = 0; j < BC; j++) 
		    a*[i,j] = b[i,j];
	}

	public int rijndaelKeySched (int[*,*]	    k,
					      int	    keyBits,
					      int	    blockBits,
					      *int[*,*,*]   W)
	{
	    /* Calculate the necessary round keys
	     * The number of calculations depends on keyBits and blockBits
	     */
	    int		KC, BC, ROUNDS;
	    int		i, j, t, rconpointer = 0;

	    switch (keyBits) {
	    case 128: KC = 4; break;
	    case 192: KC = 6; break;
	    case 256: KC = 8; break;
	    default : raise bad_key_bits (keyBits);
	    }

	    int[4,KC]   tk = {};
	    
	    switch (blockBits) {
	    case 128: BC = 4; break;
	    case 192: BC = 6; break;
	    case 256: BC = 8; break;
	    default : raise bad_block_bits (blockBits);
	    }

	    switch (keyBits >= blockBits ? keyBits : blockBits) {
	    case 128: ROUNDS = 10; break;
	    case 192: ROUNDS = 12; break;
	    case 256: ROUNDS = 14; break;
	    default : raise internal_error (); /* this cannot happen */
	    }

	    *W = (int[ROUNDS+1,4,BC]) {};

	    for(j = 0; j < KC; j++)
		for(i = 0; i < 4; i++)
		    tk[i,j] = k[i,j];
	    t = 0;
	    /* copy values into round key array */
	    for(j = 0; (j < KC) && (t < (ROUNDS+1)*BC); j++, t++)
		for(i = 0; i < 4; i++) 
		    W*[t // BC,i,t % BC] = tk[i,j];

	    while (t < (ROUNDS+1)*BC) { /* while not enough round key material calculated */
		/* calculate new values */
		for(i = 0; i < 4; i++)
		    tk[i,0] ^= S[tk[(i+1)%4,KC-1]];
		tk[0,0] ^= rcon[rconpointer++];

		if (KC != 8)
		    for(j = 1; j < KC; j++)
			for(i = 0; i < 4; i++) tk[i,j] ^= tk[i,j-1];
		else 
		{
		    for(j = 1; j < KC//2; j++)
			for(i = 0; i < 4; i++) 
			    tk[i,j] ^= tk[i,j-1];
		    for(i = 0; i < 4; i++) 
			tk[i,KC//2] ^= S[tk[i,KC//2 - 1]];
		    for(j = KC//2 + 1; j < KC; j++)
			for(i = 0; i < 4; i++) 
			    tk[i,j] ^= tk[i,j-1];
		}
		/* copy values into round key array */
		for(j = 0; (j < KC) && (t < (ROUNDS+1)*BC); j++, t++)
		    for(i = 0; i < 4; i++) 
			W*[t // BC,i,t % BC] = tk[i,j];
	    }		

	    return 0;
	}

	public void rijndaelEncrypt (*int[*,*]	    a, 
					      int	    keyBits, 
					      int	    blockBits, 
					      *int[*,*,*]   rk)
	{
	    /* Encryption of one block. 
	     */
	    int r, BC, ROUNDS;

	    switch (blockBits) {
	    case 128: BC = 4; break;
	    case 192: BC = 6; break;
	    case 256: BC = 8; break;
	    default : raise bad_block_bits (blockBits);
	    }

	    switch (keyBits >= blockBits ? keyBits : blockBits) {
	    case 128: ROUNDS = 10; break;
	    case 192: ROUNDS = 12; break;
	    case 256: ROUNDS = 14; break;
	    default : raise internal_error (); /* this cannot happen */
	    }

	    /* begin with a key addition
	     */
	    KeyAddition (a, rk, 0, BC); 

	    /* ROUNDS-1 ordinary rounds
	     */
	    for(r = 1; r < ROUNDS; r++) 
	    {
		Substitution (a, &S, BC);
		ShiftRow (a, 0, BC);
		MixColumn (a, BC);
		KeyAddition (a, rk, r, BC);
	    }

	    /* Last round is special: there is no MixColumn
	     */
	    Substitution (a, &S, BC);
	    ShiftRow (a, 0, BC);
	    KeyAddition (a, rk, ROUNDS, BC);
	}


	public void rijndaelEncryptRound (*int[*,*]	a, 
						   int		keyBits, 
						   int		blockBits, 
						   *int[*,*,*]	rk,
						   int		rounds)
	{
	    int r, BC, ROUNDS;

	    switch (blockBits) {
	    case 128: BC = 4; break;
	    case 192: BC = 6; break;
	    case 256: BC = 8; break;
	    default : raise bad_block_bits (blockBits);
	    }

	    switch (keyBits >= blockBits ? keyBits : blockBits) {
	    case 128: ROUNDS = 10; break;
	    case 192: ROUNDS = 12; break;
	    case 256: ROUNDS = 14; break;
	    default : raise internal_error (); /* this cannot happen */
	    }

	    /* make number of rounds sane */
	    if (rounds > ROUNDS) 
		rounds = ROUNDS;

	    /* begin with a key addition
	     */
	    KeyAddition (a, rk, 0, BC);

	    /* at most ROUNDS-1 ordinary rounds
	     */
	    for(r = 1; (r <= rounds) && (r < ROUNDS); r++) 
	    {
		Substitution (a, &S, BC);
		ShiftRow (a, 0, BC);
		MixColumn (a, BC);
		KeyAddition(a, rk, r, BC);
	    }

	    /* if necessary, do the last, special, round: 
	     */
	    if (rounds == ROUNDS) 
	    {
		Substitution (a, &S, BC);
		ShiftRow (a, 0, BC);
		KeyAddition (a, rk, ROUNDS, BC);
	    }
	}

	public void rijndaelDecrypt (*int[*,*]	    a, 
					      int	    keyBits, 
					      int	    blockBits, 
					      *int[*,*,*]   rk)
	{
	    int r, BC, ROUNDS;

	    switch (blockBits) {
	    case 128: BC = 4; break;
	    case 192: BC = 6; break;
	    case 256: BC = 8; break;
	    default : raise bad_block_bits (blockBits);
	    }

	    switch (keyBits >= blockBits ? keyBits : blockBits) {
	    case 128: ROUNDS = 10; break;
	    case 192: ROUNDS = 12; break;
	    case 256: ROUNDS = 14; break;
	    default : raise internal_error (); /* this cannot happen */
	    }

	    /* To decrypt: apply the inverse operations of the encrypt routine,
	     *             in opposite order
	     * 
	     * (KeyAddition is an involution: it 's equal to its inverse)
	     * (the inverse of Substitution with table S is Substitution with the inverse table of S)
	     * (the inverse of Shiftrow is Shiftrow over a suitable distance)
	     */

	    /* First the special round:
	     *   without InvMixColumn
	     *   with extra KeyAddition
	     */
	    KeyAddition (a, rk, ROUNDS, BC);
	    Substitution (a, &Si, BC);
	    ShiftRow (a, 1, BC);

	    /* ROUNDS-1 ordinary rounds
	     */
	    for(r = ROUNDS-1; r > 0; r--) 
	    {
		KeyAddition (a, rk, r, BC);
		InvMixColumn (a, BC);
		Substitution (a, &Si, BC);
		ShiftRow (a, 1, BC);
	    }

	    /* End with the extra key addition
	     */

	    KeyAddition (a, rk, 0,BC);
	}

	/* Decrypt only a certain number of rounds.
	 * Only used in the Intermediate Value Known Answer Test.
	 * Operations rearranged such that the intermediate values
	 * of decryption correspond with the intermediate values
	 * of encryption.
	 */
	public void rijndaelDecryptRound (*int[*,*]	a,
						   int		keyBits, 
						   int		blockBits, 
						   *int[*,*,*]	rk,
						   int		rounds)
	{
	    int r, BC, ROUNDS;

	    switch (blockBits) {
	    case 128: BC = 4; break;
	    case 192: BC = 6; break;
	    case 256: BC = 8; break;
	    default : raise bad_block_bits (blockBits);
	    }

	    switch (keyBits >= blockBits ? keyBits : blockBits) {
	    case 128: ROUNDS = 10; break;
	    case 192: ROUNDS = 12; break;
	    case 256: ROUNDS = 14; break;
	    default : raise internal_error (); /* this cannot happen */
	    }

	    /* make number of rounds sane */
	    if (rounds > ROUNDS) 
		rounds = ROUNDS;

	    /* First the special round:
	     *   without InvMixColumn
	     *   with extra KeyAddition
	     */
	    KeyAddition (a, rk, ROUNDS, BC);
	    Substitution (a, &Si, BC);
	    ShiftRow (a, 1, BC);

	    /* ROUNDS-1 ordinary rounds
	     */
	    for(r = ROUNDS-1; r > rounds; r--) 
	    {
		KeyAddition (a, rk, r, BC);
		InvMixColumn (a, BC);
		Substitution (a, &Si, BC);
		ShiftRow (a, 1, BC);
	    }

	    if (rounds == 0) 
	    {
		/* End with the extra key addition
		 */	
		KeyAddition (a, rk, 0, BC);
	    }    
	}
    }

    import algorithm;
    
    public int makeKey (*keyInstance	key, 
				 int		direction, 
				 int		keyLen,
				 string		keyMaterial)
    {
	int[4,MAXKC]	k = {};
	int		i, j, t;

	if ((direction == DIR_ENCRYPT) || (direction == DIR_DECRYPT))
	    key->direction = direction;
	else
	    raise bad_key_dir (direction);

	if ((keyLen == 128) || (keyLen == 192) || (keyLen == 256))
	    key->keyLen = keyLen;
	else
	    raise bad_key_len (keyLen);

	key->keyMaterial = keyMaterial;
	for (i = 0; i < key->keyLen//8; i++)
	{
	    t = key->keyMaterial[2*i];
	    if ((t >= '0') && (t <= '9')) 
		j = (t - '0') << 4;
	    else if ((t >= 'a') && (t <= 'f')) 
		j = (t - 'a' + 10) << 4;
	    else if ((t >= 'A') && (t <= 'F')) 
		j = (t - 'A' + 10) << 4; 
	    else 
		raise bad_key_material (String::new (t));
	    
	    t = key->keyMaterial[2*i+1];
	    if ((t >= '0') && (t <= '9')) 
		j ^= (t - '0');
	    else if ((t >= 'a') && (t <= 'f')) 
		j ^= (t - 'a' + 10); 
	    else if ((t >= 'A') && (t <= 'F')) 
		j ^= (t - 'A' + 10); 
	    else 
		raise bad_key_material (String::new (t));

	    k[i % 4,i // 4] = j & 0xff;
	}
	rijndaelKeySched (k, key->keyLen, key->blockLen, &key->keySched);
	return 1;
    }

    public exception bad_cipher_mode (int mode);
    public exception bad_cipher_instance (string t);
    
    public int cipherInit (*cipherInstance cipher,
				    int		    mode,
				    string	    IV)
    {
	int i, j, t;

	if ((mode == MODE_ECB) || (mode == MODE_CBC) || (mode == MODE_CFB1))
	    cipher->mode = mode;
	else
	    raise bad_cipher_mode (mode);

	if (String::length (IV) != 0)
	{
	    if (String::length (IV) != cipher->blockLen/8 * 2)
		raise bad_cipher_instance (IV);

	    for(i = 0; i < cipher->blockLen/8; i++) {		
		t = IV[2*i];
		if ((t >= '0') && (t <= '9')) 
		    j = (t - '0') << 4;
		else if ((t >= 'a') && (t <= 'f')) 
		    j = (t - 'a' + 10) << 4; 
		else if ((t >= 'A') && (t <= 'F')) 
		    j = (t - 'A' + 10) << 4; 
		else 
		    raise bad_cipher_instance (String::new (t));

		t = IV[2*i+1];
		if ((t >= '0') && (t <= '9')) 
		    j ^= (t - '0');
		else if ((t >= 'a') && (t <= 'f')) 
		    j ^= (t - 'a' + 10); 
		else if ((t >= 'A') && (t <= 'F')) 
		    j ^= (t - 'A' + 10); 
		else 
		    raise bad_cipher_instance (String::new (t));

		cipher->IV[i] = j & 0xff;
	    } 
	}

	return TRUE;
    }

    public exception bad_cipher_state (*cipherInstance	cipher);
    
    public int blockEncrypt (*cipherInstance	cipher,
				      *keyInstance	key,
				      *int[*]		input,
				      int		inputLen,
				      *int[*]		outBuffer)
    {
	int		i, j, t, numBlocks;
	int[4,MAXBC]	block = {};

        /* check parameter consistency: */
        if (key->direction != DIR_ENCRYPT ||
	    (key->keyLen != 128 && key->keyLen != 192 && key->keyLen != 256)) 
	{
	    raise bad_key_material ("");
        }
        if ((cipher->mode != MODE_ECB && cipher->mode != MODE_CBC && cipher->mode != MODE_CFB1) ||
	    (cipher->blockLen != 128 && cipher->blockLen != 192 && cipher->blockLen != 256)) 
	{
	    raise bad_cipher_state (cipher);
	}

	numBlocks = inputLen//cipher->blockLen;
	
	switch (cipher->mode) {
	case MODE_ECB: 
	    for (i = 0; i < numBlocks; i++) 
	    {
		for (j = 0; j < cipher->blockLen/32; j++) 
		{
		    /* parse input stream into rectangular array */
		    for(t = 0; t < 4; t++)
			block[t,j] = input*[4*j+t] & 0xFF;
		}
		rijndaelEncrypt (&block, key->keyLen, cipher->blockLen, &key->keySched);
		for (j = 0; j < cipher->blockLen/32; j++) 
		{
		    /* parse rectangular array into output ciphertext bytes */
		    for(t = 0; t < 4; t++)
			outBuffer*[4*j+t] = block[t,j];
		}
	    }
	    break;

	case MODE_CBC:
	    for (j = 0; j < cipher->blockLen/32; j++) 
	    {
		/* parse initial value into rectangular array */
		for(t = 0; t < 4; t++)
		    block[t,j] = cipher->IV[t+4*j] & 0xFF;
	    }
	    for (i = 0; i < numBlocks; i++) 
	    {
		for (j = 0; j < cipher->blockLen/32; j++) 
		{
		    /* parse input stream into rectangular array and exor with 
		     IV or the previous ciphertext */
		    for(t = 0; t < 4; t++)
			block[t,j] ^= input*[4*j+t] & 0xFF;
		}
		rijndaelEncrypt (&block, key->keyLen, cipher->blockLen, &key->keySched);
		for (j = 0; j < cipher->blockLen/32; j++) 
		{
		    /* parse rectangular array into output ciphertext bytes */
		    for(t = 0; t < 4; t++)
			outBuffer*[4*j+t] = block[t,j] & 0xFF;
		}
	    }
	    break;

	default: 
	    raise bad_cipher_state (cipher);
	}
	
	return numBlocks*cipher->blockLen;
    }

    public int blockDecrypt (*cipherInstance	cipher,
				      *keyInstance	key,
				      *int[*]		input,
				      int		inputLen,
				      *int[*]		outBuffer)
    {
	int		i, j, t, numBlocks;
	int[4,MAXBC]    block = {};

	if (key->direction == DIR_ENCRYPT ||
	    cipher->blockLen != key->blockLen) 
	{
	    raise bad_cipher_state (cipher);
	}

	/* check parameter consistency: */
	if (key->direction != DIR_DECRYPT ||
	    (key->keyLen != 128 && key->keyLen != 192 && key->keyLen != 256)) 
	{
	    raise bad_key_material ("");
	}

	if ((cipher->mode != MODE_ECB && cipher->mode != MODE_CBC && cipher->mode != MODE_CFB1) ||
	    (cipher->blockLen != 128 && cipher->blockLen != 192 && cipher->blockLen != 256)) 
	{
	    raise bad_cipher_state (cipher);
	}


	numBlocks = inputLen//cipher->blockLen;

	switch (cipher->mode) {
	case MODE_ECB: 
	    for (i = 0; i < numBlocks; i++) 
	    {
		for (j = 0; j < cipher->blockLen/32; j++) 
		{
		    /* parse input stream into rectangular array */
		    for(t = 0; t < 4; t++)
			block[t,j] = input*[4*j+t] & 0xFF;
		}
		rijndaelDecrypt (&block, key->keyLen, cipher->blockLen, &key->keySched);
		for (j = 0; j < cipher->blockLen/32; j++) 
		{
		    /* parse rectangular array into output ciphertext bytes */
		    for(t = 0; t < 4; t++)
			outBuffer*[4*j+t] = block[t,j];
		}
	    }
	    break;

	case MODE_CBC:
	    /* first block */
	    for (j = 0; j < cipher->blockLen/32; j++) 
	    {
		/* parse input stream into rectangular array */
		for(t = 0; t < 4; t++)
		    block[t,j] = input*[4*j+t] & 0xFF;
	    }
	    rijndaelDecrypt (&block, key->keyLen, cipher->blockLen, &key->keySched);

	    for (j = 0; j < cipher->blockLen/32; j++) 
	    {
		/* exor the IV and parse rectangular array into output ciphertext bytes */
		for(t = 0; t < 4; t++)
		    outBuffer*[4*j+t] = (block[t,j] ^ cipher->IV[t+4*j]);
	    }

	    /* next blocks */
	    for (i = 1; i < numBlocks; i++) 
	    {
		for (j = 0; j < cipher->blockLen/32; j++) 
		{
		    /* parse input stream into rectangular array */
		    for(t = 0; t < 4; t++)
			block[t,j] = input*[cipher->blockLen//8+4*j+t] & 0xFF;
		}
		rijndaelDecrypt (&block, key->keyLen, cipher->blockLen, &key->keySched);

		for (j = 0; j < cipher->blockLen/32; j++) 
		{
		    /* exor previous ciphertext block and parse rectangular array 
		     into output ciphertext bytes */
		    for(t = 0; t < 4; t++)
			outBuffer*[cipher->blockLen//8+4*j+t] = ((block[t,j] ^ 
								   input*[4*j+t-4*cipher->blockLen//32]));
		}
	    }
	    break;

	default:
	    raise bad_cipher_state (cipher);
	}

	return numBlocks*cipher->blockLen;
    }

    /**
     *	cipherUpdateRounds:
     *
     *	Encrypts/Decrypts exactly one full block a specified number of rounds.
     *	Only used in the Intermediate Value Known Answer Test.	
     *
     *	Returns:
     *		TRUE - on success
     *		BAD_CIPHER_STATE - cipher in bad state (e.g., not initialized)
     */

    public int cipherUpdateRounds (*cipherInstance cipher,
					    *keyInstance    key,
					    *int[*]	    input,
					    int		    inputLen,
					    *int[*]	    outBuffer,
					    int		    rounds)
    {
	int		j, t;
	int[4,MAXBC]    block = {};

	if (cipher->blockLen != key->blockLen) 
	{
	    raise bad_cipher_state (cipher);
	}

	for (j = 0; j < cipher->blockLen/32; j++) 
	{
	    /* parse input stream into rectangular array */
	    for(t = 0; t < 4; t++)
		block[t,j] = input*[4*j+t] & 0xFF;
	}
	switch (key->direction) {
	case DIR_ENCRYPT:
	    rijndaelEncryptRound (&block, key->keyLen, cipher->blockLen, 
				  &key->keySched, rounds);
	    break;

	case DIR_DECRYPT:
	    rijndaelDecryptRound (&block, key->keyLen, cipher->blockLen, 
				  &key->keySched, rounds);
	    break;

	default:
	    raise bad_key_dir (key->direction);
	} 
	for (j = 0; j < cipher->blockLen/32; j++) 
	{
	    /* parse rectangular array into output ciphertext bytes */
	    for(t = 0; t < 4; t++)
		outBuffer*[4*j+t] = block[t,j];
	}

	return TRUE;
    }
    
    public int[*] string_to_array (string s, *cipherInstance cipher)
    {
	int	blockLen = cipher->blockLen // 8;
	int	len = (ceil (String::length (s) / blockLen) * blockLen);
	
	int[len]    a = {};
	int	    i;

	for (i = 0; i < String::length (s); i++)
	    a[i] = s[i];
	for (; i < len; i++)
	    a[i] = 0;
	return a;
    }
    
    public string array_to_string (int[*] a)
    {
	string	s = "";
	int	i;

	for (i = 0; i < dim(a) && a[i] != 0; i++)
	    s = s + String::new (a[i]);
	return s;
    }
}

import Rijndael;

void main ()
{
    string	secret = "000102030405060708090a0b0c0d0e0f";
    string	original = "Hello, world.";
    
    /*
     * Create an encryption key and encryption instance
     */
    keyInstance encKeyInst = (keyInstance) { .blockLen = 128 };
    makeKey (&encKeyInst, DIR_ENCRYPT, 128, secret);
    
    cipherInstance	encCipherInst = (cipherInstance) { .blockLen = 128 };
    cipherInit (&encCipherInst, MODE_ECB, "");
    
    /*
     * Convert the message to integers and encrypt
     */
    int[*]	orig_text = string_to_array (original, &encCipherInst);
    int[*]	cipher_text = (int[dim(orig_text)]) {};
    
    blockEncrypt (&encCipherInst, &encKeyInst, &orig_text, 
		  dim(orig_text) * 8, &cipher_text);
    
    /*
     * Create a decryption key and decryption instance
     */
    keyInstance decKeyInst = (keyInstance) { .blockLen = 128 };
    makeKey (&decKeyInst, DIR_DECRYPT, 128, secret);
    
    cipherInstance	decCipherInst = (cipherInstance) { .blockLen = 128 };
    cipherInit (&decCipherInst, MODE_ECB, "");
    
    /*
     * Allocate some space for the recovered plaintext and decrypt
     */
     
    int[*]	recover_text = (int[dim(cipher_text)]) {};
    
    blockDecrypt (&decCipherInst, &decKeyInst, 
		  &cipher_text, dim(cipher_text) * 8, &recover_text);
    
    /*
     * Convert the recovered data back to a string and present the results
     */
    string	recover = array_to_string (recover_text);
    printf ("original:  %g\n", original);
    printf ("cipher:    %g\n", cipher_text);
    printf ("recovered: %g\n", recover);
}

main ();