-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaes.c
809 lines (745 loc) · 25.1 KB
/
aes.c
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
/* SPDX-License-Identifier: BSL-1.0
Copyright (c) 2020 Pavlos Georgiou
Distributed under the Boost Software License, Version 1.0.
See accompanying file LICENSE_1_0.txt or copy at
https://www.boost.org/LICENSE_1_0.txt
*/
#include "aes.h"
#include <string.h>
static const uint8_t sbox[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
};
static const uint8_t rsbox[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
};
void vial_aes_increment_be(uint8_t *num, size_t len)
{
if (len == 0) return;
do --len; while (++(num[len]) == 0 && len != 0);
}
static void galois_double_be(uint8_t *dst, const uint8_t *src)
{
const uint8_t msb = src[0] >> 7;
for (int i = 0; i < VIAL_AES_BLOCK_SIZE - 1; ++i)
dst[i] = (src[i] << 1) | (src[i + 1] >> 7);
dst[VIAL_AES_BLOCK_SIZE - 1] = (src[VIAL_AES_BLOCK_SIZE - 1] << 1) ^ (135 & -msb);
}
static void galois_mult_gcm(const uint32_t *h, uint8_t *x)
{
uint32_t m,
h0 = h[0], h1 = h[1], h2 = h[2], h3 = h[3],
r0 = 0, r1 = 0, r2 = 0, r3 = 0;
unsigned i;
uint8_t b = 0;
for (i = 0; i < 128; ++i) {
b = (i & 7) ? (b << 1) : x[i / 8];
m = 0;
m -= b >> 7;
r0 ^= h0 & m;
r1 ^= h1 & m;
r2 ^= h2 & m;
r3 ^= h3 & m;
m = -(h3 & 1);
h3 = (h3 >> 1) | (h2 << 31);
h2 = (h2 >> 1) | (h1 << 31);
h1 = (h1 >> 1) | (h0 << 31);
h0 = (h0 >> 1) ^ (0xE1000000 & m);
}
for (i = 4; i --> 0;) {
x[i] = r0;
r0 >>= 8;
x[i + 4] = r1;
r1 >>= 8;
x[i + 8] = r2;
r2 >>= 8;
x[i + 12] = r3;
r3 >>= 8;
}
}
static void block_zero(struct vial_aes_block *blk)
{
blk->words[3] = blk->words[2] = blk->words[1] = blk->words[0] = 0;
}
static void block_xor(struct vial_aes_block *dst, const struct vial_aes_block *src)
{
dst->words[0] ^= src->words[0];
dst->words[1] ^= src->words[1];
dst->words[2] ^= src->words[2];
dst->words[3] ^= src->words[3];
}
static void transpose_in(struct vial_aes_block *blk, const uint8_t *buf)
{
uint32_t w;
int i, j;
for (i = 0; i < 4; ++i) {
w = 0;
for (j = 0; j < 4; ++j) {
w = (w << 8) | buf[i + j * 4];
}
blk->words[i] = w;
}
}
static void transpose_out(const struct vial_aes_block *blk, uint8_t *buf)
{
uint32_t w;
int i, j;
for (i = 0; i < 4; ++i) {
w = blk->words[i];
for (j = 4; j --> 0;) {
buf[i + j * 4] = w;
w >>= 8;
}
}
}
#define ROTL(x, n) ((x << n) | (x >> (32 - n)))
#define GDBL4(x) (((x & 0x7F7F7F7FU) << 1) ^ ((0x40404040U - ((x >> 7) & 0x01010101U)) & 0x1B1B1B1BU))
static void expand_keys(struct vial_aes_block *keys, unsigned n, unsigned r)
{
struct vial_aes_block blk;
uint32_t *w = keys->words;
uint8_t *b = (uint8_t *) (w + n - 1);
unsigned i, j;
uint8_t c = 1;
for (i = n, j = 0; i < 4 * r; ++i, ++j, b += 4) {
if (j == n) j = 0;
if (j == 0) {
b[4] = sbox[b[1]] ^ c;
b[5] = sbox[b[2]];
b[6] = sbox[b[3]];
b[7] = sbox[b[0]];
w[i] ^= w[i - n];
c = (c << 1) ^ (0x1B & -(c >> 7));
} else if (n > 6 && j == 4) {
b[4] = sbox[b[0]];
b[5] = sbox[b[1]];
b[6] = sbox[b[2]];
b[7] = sbox[b[3]];
w[i] ^= w[i - n];
} else {
w[i] = w[i - n] ^ w[i - 1];
}
}
for (i = 0; i < r; ++i, ++keys) {
transpose_in(&blk, (uint8_t *) keys);
*keys = blk;
}
}
enum vial_aes_error vial_aes_key_init(struct vial_aes_key *self, unsigned keybits, const uint8_t *key)
{
if (!(keybits == 128 || keybits == 192 || keybits == 256))
return VIAL_AES_ERROR_LENGTH;
self->rounds = keybits / 32 + 6;
memcpy(&self->key_exp[0], key, keybits / 8);
expand_keys(self->key_exp, keybits / 32, self->rounds + 1);
return VIAL_AES_ERROR_NONE;
}
void vial_aes_block_encrypt(const struct vial_aes_key *key, uint8_t *dst, const uint8_t *src)
{
struct vial_aes_block blk;
uint32_t a1, b1, c1, d1, a2, b2, c2, d2;
unsigned i, r;
transpose_in(&blk, src);
for (r = 0; ; ++r) {
/* AddRoundKey */
block_xor(&blk, &key->key_exp[r]);
/* SubBytes */
for (i = 0; i < VIAL_AES_BLOCK_SIZE; ++i)
((uint8_t *) &blk)[i] = sbox[((uint8_t *) &blk)[i]];
/* ShiftRows */
a1 = blk.words[0];
b1 = blk.words[1];
c1 = blk.words[2];
d1 = blk.words[3];
b1 = ROTL(b1, 8);
c1 = ROTL(c1, 16);
d1 = ROTL(d1, 24);
if (r == key->rounds - 1)
break;
/* MixColumns */
a2 = GDBL4(a1) ^ b1;
b2 = GDBL4(b1) ^ c1;
c2 = GDBL4(c1) ^ d1;
d2 = GDBL4(d1) ^ a1;
blk.words[0] = a2 ^ b2 ^ d1; /* 2 3 1 1 */
blk.words[1] = b2 ^ c2 ^ a1; /* 1 2 3 1 */
blk.words[2] = c2 ^ d2 ^ b1; /* 1 1 2 3 */
blk.words[3] = d2 ^ a2 ^ c1; /* 3 1 1 2 */
}
/* AddRoundKey */
blk.words[0] = key->key_exp[key->rounds].words[0] ^ a1;
blk.words[1] = key->key_exp[key->rounds].words[1] ^ b1;
blk.words[2] = key->key_exp[key->rounds].words[2] ^ c1;
blk.words[3] = key->key_exp[key->rounds].words[3] ^ d1;
transpose_out(&blk, dst);
}
void vial_aes_block_decrypt(const struct vial_aes_key *key, uint8_t *dst, const uint8_t *src)
{
struct vial_aes_block blk;
uint32_t a1, b1, c1, d1, a2, b2, c2, d2, ac4, bd4, m;
unsigned i, r;
transpose_in(&blk, src);
/* AddRoundKey */
block_xor(&blk, &key->key_exp[key->rounds]);
for (r = key->rounds - 1; ; --r) {
/* SubBytes */
for (i = 0; i < VIAL_AES_BLOCK_SIZE; ++i)
((uint8_t *) &blk)[i] = rsbox[((uint8_t *) &blk)[i]];
/* ShiftRows */
a1 = blk.words[0];
b1 = blk.words[1];
c1 = blk.words[2];
d1 = blk.words[3];
b1 = ROTL(b1, 24);
c1 = ROTL(c1, 16);
d1 = ROTL(d1, 8);
/* AddRoundKey */
a1 ^= key->key_exp[r].words[0];
b1 ^= key->key_exp[r].words[1];
c1 ^= key->key_exp[r].words[2];
d1 ^= key->key_exp[r].words[3];
if (r == 0)
break;
/* MixColumns */
a2 = GDBL4(a1);
b2 = GDBL4(b1);
c2 = GDBL4(c1);
d2 = GDBL4(d1);
ac4 = a2 ^ c2;
bd4 = b2 ^ d2;
ac4 = GDBL4(ac4);
bd4 = GDBL4(bd4);
m = ac4 ^ bd4;
m = GDBL4(m) ^ a1 ^ b1 ^ c1 ^ d1;
ac4 ^= m, bd4 ^= m;
blk.words[0] = ac4 ^ a2 ^ b2 ^ a1; /* 14 11 13 9 */
blk.words[1] = bd4 ^ b2 ^ c2 ^ b1; /* 9 14 11 13 */
blk.words[2] = ac4 ^ c2 ^ d2 ^ c1; /* 13 9 14 11 */
blk.words[3] = bd4 ^ d2 ^ a2 ^ d1; /* 11 13 9 14 */
}
blk.words[0] = a1;
blk.words[1] = b1;
blk.words[2] = c1;
blk.words[3] = d1;
transpose_out(&blk, dst);
}
void vial_aes_cmac_init(struct vial_aes_cmac *self, const struct vial_aes_key *key)
{
uint8_t k0[VIAL_AES_BLOCK_SIZE] = {0};
self->key = key;
vial_aes_cmac_reset(self);
vial_aes_block_encrypt(self->key, k0, k0);
galois_double_be((uint8_t *) &self->k1, k0);
}
void vial_aes_cmac_reset(struct vial_aes_cmac *self)
{
self->buf_len = 0;
block_zero(&self->mac);
}
void vial_aes_cmac_update(struct vial_aes_cmac *self, const uint8_t *src, size_t len)
{
struct vial_aes_block blk;
if (self->buf_len > 0) {
while (len > 0 && self->buf_len < VIAL_AES_BLOCK_SIZE) {
((uint8_t *) &self->mac)[self->buf_len++] ^= *src++;
len--;
}
if (len == 0)
return;
self->buf_len = 0;
vial_aes_block_encrypt(self->key, (uint8_t *) &self->mac, (uint8_t *) &self->mac);
}
while (len > VIAL_AES_BLOCK_SIZE) {
memcpy(&blk, src, VIAL_AES_BLOCK_SIZE);
block_xor(&self->mac, &blk);
vial_aes_block_encrypt(self->key, (uint8_t *) &self->mac, (uint8_t *) &self->mac);
len -= VIAL_AES_BLOCK_SIZE;
src += VIAL_AES_BLOCK_SIZE;
}
while (len --> 0) {
((uint8_t *) &self->mac)[self->buf_len++] ^= *src++;
}
}
void vial_aes_cmac_final(struct vial_aes_cmac *self, uint8_t *tag, size_t tag_len)
{
struct vial_aes_block k2;
if (self->buf_len < VIAL_AES_BLOCK_SIZE) {
((uint8_t *) &self->mac)[self->buf_len] ^= 0x80;
galois_double_be((uint8_t *) &k2, (uint8_t *) &self->k1);
block_xor(&self->mac, &k2);
} else {
block_xor(&self->mac, &self->k1);
}
vial_aes_block_encrypt(self->key, (uint8_t *) &self->mac, (uint8_t *) &self->mac);
if (tag_len == VIAL_AES_BLOCK_SIZE) {
memcpy(tag, &self->mac, VIAL_AES_BLOCK_SIZE);
} else {
if (tag_len > VIAL_AES_BLOCK_SIZE)
tag_len = VIAL_AES_BLOCK_SIZE;
memcpy(tag, &self->mac, tag_len);
}
vial_aes_cmac_reset(self);
}
void vial_aes_cmac_tag(const struct vial_aes_key *key, uint8_t *tag, size_t tag_len, const uint8_t *src, size_t len)
{
struct vial_aes_cmac cmac;
vial_aes_cmac_init(&cmac, key);
vial_aes_cmac_update(&cmac, src, len);
vial_aes_cmac_final(&cmac, tag, tag_len);
}
static void ghash_reset(struct vial_aes_gcm *self)
{
block_zero(&self->hash_acc);
self->a_len = 0;
self->c_len = 0;
self->buf_len = 0;
}
static void ghash_init(struct vial_aes_gcm *self, const uint8_t *key)
{
uint32_t h0 = 0, h1 = 0, h2 = 0, h3 = 0;
for (int i = 0; i < 4; ++i) {
h0 = (h0 << 8) | key[i];
h1 = (h1 << 8) | key[i + 4];
h2 = (h2 << 8) | key[i + 8];
h3 = (h3 << 8) | key[i + 12];
}
self->hash_key.words[0] = h0;
self->hash_key.words[1] = h1;
self->hash_key.words[2] = h2;
self->hash_key.words[3] = h3;
ghash_reset(self);
}
static void ghash_update(struct vial_aes_gcm *self, const uint8_t *src, size_t len)
{
struct vial_aes_block blk;
if (self->buf_len > 0) {
while (len > 0 && self->buf_len < VIAL_AES_BLOCK_SIZE) {
((uint8_t *) &self->hash_acc)[self->buf_len++] ^= *src++;
len--;
}
if (self->buf_len != VIAL_AES_BLOCK_SIZE)
return;
self->buf_len = 0;
galois_mult_gcm(self->hash_key.words, (uint8_t *) &self->hash_acc);
}
while (len >= VIAL_AES_BLOCK_SIZE) {
memcpy(&blk, src, VIAL_AES_BLOCK_SIZE);
block_xor(&self->hash_acc, &blk);
galois_mult_gcm(self->hash_key.words, (uint8_t *) &self->hash_acc);
len -= VIAL_AES_BLOCK_SIZE;
src += VIAL_AES_BLOCK_SIZE;
}
while (len --> 0) {
((uint8_t *) &self->hash_acc)[self->buf_len++] ^= *src++;
}
}
static void ghash_final(struct vial_aes_gcm *self, struct vial_aes_block *hash)
{
uint64_t a_len, c_len;
uint8_t last[VIAL_AES_BLOCK_SIZE];
if (self->buf_len > 0) self->buf_len = VIAL_AES_BLOCK_SIZE;
a_len = self->a_len * 8;
c_len = self->c_len * 8;
self->a_len = 0;
self->c_len = 0;
for (int i = 8; i --> 0;) {
last[i] = a_len;
a_len >>= 8;
last[i + 8] = c_len;
c_len >>= 8;
}
ghash_update(self, last, VIAL_AES_BLOCK_SIZE);
*hash = self->hash_acc;
block_zero(&self->hash_acc);
}
typedef enum vial_aes_error (*init_key_fn)(struct vial_aes_base *self, const struct vial_aes_key *key);
typedef enum vial_aes_error (*reset_fn)(struct vial_aes_base *self, const uint8_t *iv, size_t len);
typedef enum vial_aes_error (*auth_update_fn)(struct vial_aes_base *self, const uint8_t *src, size_t len);
typedef enum vial_aes_error (*auth_final_fn)(struct vial_aes_base *self, const uint8_t *src, size_t len);
typedef enum vial_aes_error (*encrypt_fn)(struct vial_aes_base *self, uint8_t *dst, const uint8_t *src, size_t len);
typedef enum vial_aes_error (*decrypt_fn)(struct vial_aes_base *self, uint8_t *dst, const uint8_t *src, size_t len);
typedef enum vial_aes_error (*get_tag_fn)(struct vial_aes_base *self, uint8_t *tag);
typedef enum vial_aes_error (*check_tag_fn)(struct vial_aes_base *self, const uint8_t *tag);
static enum vial_aes_error return_error_reset(struct vial_aes_base *self, const uint8_t *iv, size_t len)
{
return VIAL_AES_ERROR_CIPHER;
}
static enum vial_aes_error return_error_auth_update(struct vial_aes_base *self, const uint8_t *src, size_t len)
{
return VIAL_AES_ERROR_CIPHER;
}
static enum vial_aes_error return_error_auth_final(struct vial_aes_base *self, const uint8_t *src, size_t len)
{
return VIAL_AES_ERROR_CIPHER;
}
static enum vial_aes_error return_error_get_tag(struct vial_aes_base *self, uint8_t *tag)
{
return VIAL_AES_ERROR_CIPHER;
}
static enum vial_aes_error return_error_check_tag(struct vial_aes_base *self, const uint8_t *tag)
{
return VIAL_AES_ERROR_CIPHER;
}
enum vial_aes_error vial_aes_ecb_init(struct vial_aes_ecb *self)
{
static const struct vial_aes_vtable vtable = {
VIAL_AES_MODE_ECB,
(init_key_fn) vial_aes_ecb_init_key,
return_error_reset,
return_error_auth_update,
return_error_auth_final,
(encrypt_fn) vial_aes_ecb_encrypt,
(decrypt_fn) vial_aes_ecb_decrypt,
return_error_get_tag,
return_error_check_tag
};
self->base.vtable = &vtable;
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_ecb_init_key(struct vial_aes_ecb *self, const struct vial_aes_key *key)
{
vial_aes_ecb_init(self);
self->key = key;
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_ecb_encrypt(struct vial_aes_ecb *self, uint8_t *dst, const uint8_t *src, size_t len)
{
if (len % VIAL_AES_BLOCK_SIZE != 0)
return VIAL_AES_ERROR_LENGTH;
while (len > 0) {
vial_aes_block_encrypt(self->key, dst, src);
len -= VIAL_AES_BLOCK_SIZE;
src += VIAL_AES_BLOCK_SIZE;
dst += VIAL_AES_BLOCK_SIZE;
}
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_ecb_decrypt(struct vial_aes_ecb *self, uint8_t *dst, const uint8_t *src, size_t len)
{
if (len % VIAL_AES_BLOCK_SIZE != 0)
return VIAL_AES_ERROR_LENGTH;
while (len > 0) {
vial_aes_block_decrypt(self->key, dst, src);
len -= VIAL_AES_BLOCK_SIZE;
src += VIAL_AES_BLOCK_SIZE;
dst += VIAL_AES_BLOCK_SIZE;
}
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_cbc_init(struct vial_aes_cbc *self)
{
static const struct vial_aes_vtable vtable = {
VIAL_AES_MODE_CBC,
(init_key_fn) vial_aes_cbc_init_key,
(reset_fn) vial_aes_cbc_reset,
return_error_auth_update,
return_error_auth_final,
(encrypt_fn) vial_aes_cbc_encrypt,
(decrypt_fn) vial_aes_cbc_decrypt,
return_error_get_tag,
return_error_check_tag
};
self->base.vtable = &vtable;
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_cbc_init_key(struct vial_aes_cbc *self, const struct vial_aes_key *key)
{
vial_aes_cbc_init(self);
self->key = key;
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_cbc_reset(struct vial_aes_cbc *self, const uint8_t *iv, size_t len)
{
if (len != VIAL_AES_BLOCK_SIZE)
return VIAL_AES_ERROR_IV;
memcpy(&self->iv, iv, VIAL_AES_BLOCK_SIZE);
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_cbc_encrypt(struct vial_aes_cbc *self, uint8_t *dst, const uint8_t *src, size_t len)
{
struct vial_aes_block blk;
if (len % VIAL_AES_BLOCK_SIZE != 0)
return VIAL_AES_ERROR_LENGTH;
while (len > 0) {
memcpy(&blk, src, VIAL_AES_BLOCK_SIZE);
block_xor(&blk, &self->iv);
vial_aes_block_encrypt(self->key, (uint8_t *) &blk, (uint8_t *) &blk);
memcpy(dst, &blk, VIAL_AES_BLOCK_SIZE);
self->iv = blk;
len -= VIAL_AES_BLOCK_SIZE;
src += VIAL_AES_BLOCK_SIZE;
dst += VIAL_AES_BLOCK_SIZE;
}
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_cbc_decrypt(struct vial_aes_cbc *self, uint8_t *dst, const uint8_t *src, size_t len)
{
struct vial_aes_block blk;
if (len % VIAL_AES_BLOCK_SIZE != 0)
return VIAL_AES_ERROR_LENGTH;
while (len > 0) {
vial_aes_block_decrypt(self->key, (uint8_t *) &blk, src);
block_xor(&blk, &self->iv);
memcpy(&self->iv, src, VIAL_AES_BLOCK_SIZE);
memcpy(dst, &blk, VIAL_AES_BLOCK_SIZE);
len -= VIAL_AES_BLOCK_SIZE;
src += VIAL_AES_BLOCK_SIZE;
dst += VIAL_AES_BLOCK_SIZE;
}
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_ctr_init(struct vial_aes_ctr *self)
{
static const struct vial_aes_vtable vtable = {
VIAL_AES_MODE_CTR,
(init_key_fn) vial_aes_ctr_init_key,
(reset_fn) vial_aes_ctr_reset,
return_error_auth_update,
return_error_auth_final,
(encrypt_fn) vial_aes_ctr_crypt,
(decrypt_fn) vial_aes_ctr_crypt,
return_error_get_tag,
return_error_check_tag
};
self->base.vtable = &vtable;
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_ctr_init_key(struct vial_aes_ctr *self, const struct vial_aes_key *key)
{
vial_aes_ctr_init(self);
self->key = key;
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_ctr_reset(struct vial_aes_ctr *self, const uint8_t *iv, size_t len)
{
if (len == VIAL_AES_BLOCK_SIZE) {
memcpy(&self->counter, iv, VIAL_AES_BLOCK_SIZE);
} else {
if (len > VIAL_AES_BLOCK_SIZE)
return VIAL_AES_ERROR_IV;
block_zero(&self->counter);
memcpy(&self->counter, iv, len);
}
self->pad_used = VIAL_AES_BLOCK_SIZE;
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_ctr_crypt(struct vial_aes_ctr *self, uint8_t *dst, const uint8_t *src, size_t len)
{
struct vial_aes_block blk;
while (len > 0 && self->pad_used < VIAL_AES_BLOCK_SIZE) {
*dst = *src ^ ((uint8_t *) &self->pad)[self->pad_used++];
len--; src++; dst++;
}
while (len >= VIAL_AES_BLOCK_SIZE) {
vial_aes_block_encrypt(self->key, (uint8_t *) &self->pad, (uint8_t *) &self->counter);
vial_aes_increment_be((uint8_t *) &self->counter, VIAL_AES_BLOCK_SIZE);
memcpy(&blk, src, VIAL_AES_BLOCK_SIZE);
block_xor(&blk, &self->pad);
memcpy(dst, &blk, VIAL_AES_BLOCK_SIZE);
len -= VIAL_AES_BLOCK_SIZE;
src += VIAL_AES_BLOCK_SIZE;
dst += VIAL_AES_BLOCK_SIZE;
}
if (len > 0) {
vial_aes_block_encrypt(self->key, (uint8_t *) &self->pad, (uint8_t *) &self->counter);
vial_aes_increment_be((uint8_t *) &self->counter, VIAL_AES_BLOCK_SIZE);
self->pad_used = 0;
while (len > 0) {
*dst = *src ^ ((uint8_t *) &self->pad)[self->pad_used++];
len--; src++; dst++;
}
}
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_eax_init(struct vial_aes_eax *self)
{
static const struct vial_aes_vtable vtable = {
VIAL_AES_MODE_EAX,
(init_key_fn) vial_aes_eax_init_key,
(reset_fn) vial_aes_eax_reset,
(auth_update_fn) vial_aes_eax_auth_update,
(auth_final_fn) vial_aes_eax_auth_final,
(encrypt_fn) vial_aes_eax_encrypt,
(decrypt_fn) vial_aes_eax_decrypt,
(get_tag_fn) vial_aes_eax_get_tag,
(check_tag_fn) vial_aes_eax_check_tag
};
self->base.vtable = &vtable;
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_eax_init_key(struct vial_aes_eax *self, const struct vial_aes_key *key)
{
vial_aes_eax_init(self);
vial_aes_ctr_init_key(&self->ctr, key);
vial_aes_cmac_init(&self->cmac, key);
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_eax_reset(struct vial_aes_eax *self, const uint8_t *nonce, size_t len)
{
uint8_t iv[VIAL_AES_BLOCK_SIZE];
vial_aes_cmac_reset(&self->cmac);
self->cmac.buf_len = VIAL_AES_BLOCK_SIZE;
vial_aes_cmac_update(&self->cmac, nonce, len);
vial_aes_cmac_final(&self->cmac, iv, VIAL_AES_BLOCK_SIZE);
self->auth_done = -1;
return vial_aes_ctr_reset(&self->ctr, iv, VIAL_AES_BLOCK_SIZE);
}
enum vial_aes_error vial_aes_eax_auth_update(struct vial_aes_eax *self, const uint8_t *src, size_t len)
{
if (self->auth_done) {
self->auth_done = 0;
vial_aes_cmac_reset(&self->cmac);
self->cmac.buf_len = VIAL_AES_BLOCK_SIZE;
((uint8_t *) &self->cmac.mac)[VIAL_AES_BLOCK_SIZE - 1] = 1;
}
vial_aes_cmac_update(&self->cmac, src, len);
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_eax_auth_final(struct vial_aes_eax *self, const uint8_t *src, size_t len)
{
vial_aes_eax_auth_update(self, src, len);
vial_aes_cmac_final(&self->cmac, (uint8_t *) &self->auth, VIAL_AES_BLOCK_SIZE);
block_xor(&self->auth, &self->ctr.counter);
self->cmac.buf_len = VIAL_AES_BLOCK_SIZE;
((uint8_t *) &self->cmac.mac)[VIAL_AES_BLOCK_SIZE - 1] = 2;
self->auth_done = 1;
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_eax_encrypt(struct vial_aes_eax *self, uint8_t *dst, const uint8_t *src, size_t len)
{
if (self->auth_done < 1)
vial_aes_eax_auth_final(self, NULL, 0);
vial_aes_ctr_crypt(&self->ctr, dst, src, len);
vial_aes_cmac_update(&self->cmac, dst, len);
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_eax_decrypt(struct vial_aes_eax *self, uint8_t *dst, const uint8_t *src, size_t len)
{
if (self->auth_done < 1)
vial_aes_eax_auth_final(self, NULL, 0);
vial_aes_cmac_update(&self->cmac, src, len);
return vial_aes_ctr_crypt(&self->ctr, dst, src, len);
}
enum vial_aes_error vial_aes_eax_get_tag(struct vial_aes_eax *self, uint8_t *tag)
{
struct vial_aes_block blk;
if (self->auth_done < 1)
vial_aes_eax_auth_final(self, NULL, 0);
vial_aes_cmac_final(&self->cmac, (uint8_t *) &blk, VIAL_AES_BLOCK_SIZE);
block_xor(&blk, &self->auth);
memcpy(tag, &blk, VIAL_AES_BLOCK_SIZE);
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_eax_check_tag(struct vial_aes_eax *self, const uint8_t *tag)
{
uint8_t blk[VIAL_AES_BLOCK_SIZE];
vial_aes_eax_get_tag(self, blk);
return memcmp(blk, tag, VIAL_AES_BLOCK_SIZE) ? VIAL_AES_ERROR_MAC : VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_gcm_init(struct vial_aes_gcm *self)
{
static const struct vial_aes_vtable vtable = {
VIAL_AES_MODE_GCM,
(init_key_fn) vial_aes_gcm_init_key,
(reset_fn) vial_aes_gcm_reset,
(auth_update_fn) vial_aes_gcm_auth_update,
(auth_final_fn) vial_aes_gcm_auth_final,
(encrypt_fn) vial_aes_gcm_encrypt,
(decrypt_fn) vial_aes_gcm_decrypt,
(get_tag_fn) vial_aes_gcm_get_tag,
(check_tag_fn) vial_aes_gcm_check_tag
};
self->base.vtable = &vtable;
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_gcm_init_key(struct vial_aes_gcm *self, const struct vial_aes_key *key)
{
uint8_t hash_key[VIAL_AES_BLOCK_SIZE] = {0};
vial_aes_gcm_init(self);
vial_aes_ctr_init_key(&self->ctr, key);
vial_aes_block_encrypt(key, hash_key, hash_key);
ghash_init(self, hash_key);
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_gcm_reset(struct vial_aes_gcm *self, const uint8_t *nonce, size_t len)
{
uint8_t iv[VIAL_AES_BLOCK_SIZE];
if (len != 12)
return VIAL_AES_ERROR_IV;
ghash_reset(self);
memcpy(iv, nonce, 12);
iv[12] = iv[13] = iv[14] = 0;
iv[15] = 1;
vial_aes_block_encrypt(self->ctr.key, (uint8_t *) &self->auth, iv);
iv[15] = 2;
return vial_aes_ctr_reset(&self->ctr, iv, VIAL_AES_BLOCK_SIZE);
}
enum vial_aes_error vial_aes_gcm_auth_update(struct vial_aes_gcm *self, const uint8_t *src, size_t len)
{
self->a_len += len;
ghash_update(self, src, len);
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_gcm_auth_final(struct vial_aes_gcm *self, const uint8_t *src, size_t len)
{
vial_aes_gcm_auth_update(self, src, len);
if (self->buf_len > 0)
self->buf_len = VIAL_AES_BLOCK_SIZE;
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_gcm_encrypt(struct vial_aes_gcm *self, uint8_t *dst, const uint8_t *src, size_t len)
{
self->c_len += len;
vial_aes_ctr_crypt(&self->ctr, dst, src, len);
ghash_update(self, dst, len);
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_gcm_decrypt(struct vial_aes_gcm *self, uint8_t *dst, const uint8_t *src, size_t len)
{
self->c_len += len;
ghash_update(self, src, len);
return vial_aes_ctr_crypt(&self->ctr, dst, src, len);
}
enum vial_aes_error vial_aes_gcm_get_tag(struct vial_aes_gcm *self, uint8_t *tag)
{
struct vial_aes_block blk;
ghash_final(self, &blk);
block_xor(&blk, &self->auth);
memcpy(tag, &blk, VIAL_AES_BLOCK_SIZE);
return VIAL_AES_ERROR_NONE;
}
enum vial_aes_error vial_aes_gcm_check_tag(struct vial_aes_gcm *self, const uint8_t *tag)
{
uint8_t blk[VIAL_AES_BLOCK_SIZE];
vial_aes_gcm_get_tag(self, blk);
return memcmp(blk, tag, VIAL_AES_BLOCK_SIZE) ? VIAL_AES_ERROR_MAC : VIAL_AES_ERROR_NONE;
}