aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cxx/include/aesnixx/aes.hpp
blob: 1273c56cbda7e6cad7dedab659860a10bb794316 (plain) (blame)
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
/**
 * \file
 * \author Egor Tensin <Egor.Tensin@gmail.com>
 * \date 2015
 * \copyright This file is licensed under the terms of the MIT License.
 *            See LICENSE.txt for details.
 */

#include "algorithm.hpp"
#include "data.hpp"
#include "mode.hpp"

#include <aesni/all.h>

#include <string>

#pragma once

namespace aesni
{
    namespace aes
    {
        typedef AesNI_Aes_Block Block;

        typedef AesNI_Aes128_Key Key128;
        typedef AesNI_Aes192_Key Key192;
        typedef AesNI_Aes256_Key Key256;

        inline void make_block(Block& dest, int hi3, int hi2, int lo1, int lo0)
        {
            aesni_aes_make_block(&dest, hi3, hi2, lo1, lo0);
        }

        inline void make_key(Key128& dest, int hi3, int hi2, int lo1, int lo0)
        {
            aesni_aes128_make_key(&dest, hi3, hi2, lo1, lo0);
        }

        inline void make_key(Key192& dest, int hi5, int hi4, int hi3, int lo2, int lo1, int lo0)
        {
            aesni_aes192_make_key(&dest, hi5, hi4, hi3, lo2, lo1, lo0);
        }

        inline void make_key(Key256& dest, int hi7, int hi6, int hi5, int hi4, int lo3, int lo2, int lo1, int lo0)
        {
            aesni_aes256_make_key(&dest, hi7, hi6, hi5, hi4, lo3, lo2, lo1, lo0);
        }

        std::string to_string(const Block& block)
        {
            AesNI_Aes_BlockString str;
            aesni_aes_format_block(&str, &block, ErrorDetailsThrowsInDestructor());
            return std::string(str.str);
        }

        std::string to_matrix_string(const Block& block)
        {
            AesNI_Aes_BlockMatrixString str;
            aesni_aes_format_block_as_matrix(&str, &block, ErrorDetailsThrowsInDestructor());
            return std::string(str.str);
        }

        inline void from_string(Block& dest, const char* src)
        {
            aesni_aes_parse_block(&dest, src, ErrorDetailsThrowsInDestructor());
        }

        inline void from_string(Block& dest, const std::string& src)
        {
            from_string(dest, src.c_str());
        }

        std::string to_string(const Key128& block)
        {
            AesNI_Aes128_KeyString str;
            aesni_aes128_format_key(&str, &block, ErrorDetailsThrowsInDestructor());
            return std::string(str.str);
        }

        std::string to_string(const Key192& block)
        {
            AesNI_Aes192_KeyString str;
            aesni_aes192_format_key(&str, &block, ErrorDetailsThrowsInDestructor());
            return std::string(str.str);
        }

        std::string to_string(const Key256& block)
        {
            AesNI_Aes256_KeyString str;
            aesni_aes256_format_key(&str, &block, ErrorDetailsThrowsInDestructor());
            return std::string(str.str);
        }

        inline void from_string(Key128& dest, const char* src)
        {
            aesni_aes128_parse_key(&dest, src, ErrorDetailsThrowsInDestructor());
        }

        inline void from_string(Key192& dest, const char* src)
        {
            aesni_aes192_parse_key(&dest, src, ErrorDetailsThrowsInDestructor());
        }

        inline void from_string(Key256& dest, const char* src)
        {
            aesni_aes256_parse_key(&dest, src, ErrorDetailsThrowsInDestructor());
        }

        inline void from_string(Key128& dest, const std::string& src)
        {
            return from_string(dest, src.c_str());
        }

        inline void from_string(Key192& dest, const std::string& src)
        {
            return from_string(dest, src.c_str());
        }

        inline void from_string(Key256& dest, const std::string& src)
        {
            return from_string(dest, src.c_str());
        }

        typedef AesNI_Aes128_RoundKeys RoundKeys128;
        typedef AesNI_Aes192_RoundKeys RoundKeys192;
        typedef AesNI_Aes256_RoundKeys RoundKeys256;

        template <typename RoundKeysT>
        inline std::size_t get_number_of_rounds(const RoundKeysT& round_keys)
        {
            return sizeof(round_keys) / sizeof(Block128);
        }

        inline void expand_key(
            const Key128& key,
            RoundKeys128& encryption_keys)
        {
            aesni_aes128_expand_key(&key, &encryption_keys);
        }

        inline void expand_key(
            const Key192& key,
            RoundKeys192& encryption_keys)
        {
            aesni_aes192_expand_key(&key, &encryption_keys);
        }

        inline void expand_key(
            const Key256& key,
            RoundKeys256& encryption_keys)
        {
            aesni_aes256_expand_key(&key, &encryption_keys);
        }

        inline void derive_decryption_keys(
            const RoundKeys128& encryption_keys,
            RoundKeys128& decryption_keys)
        {
            aesni_aes128_derive_decryption_keys(
                &encryption_keys, &decryption_keys);
        }

        inline void derive_decryption_keys(
            const RoundKeys192& encryption_keys,
            RoundKeys192& decryption_keys)
        {
            aesni_aes192_derive_decryption_keys(
                &encryption_keys, &decryption_keys);
        }

        inline void derive_decryption_keys(
            const RoundKeys256& encryption_keys,
            RoundKeys256& decryption_keys)
        {
            aesni_aes256_derive_decryption_keys(
                &encryption_keys, &decryption_keys);
        }

        inline Block encrypt_ecb(
            const Block& plaintext,
            const RoundKeys128& encryption_keys)
        {
            return aesni_aes128_encrypt_block_ecb(plaintext, &encryption_keys);
        }

        inline Block decrypt_ecb(
            const Block& ciphertext,
            const RoundKeys128& decryption_keys)
        {
            return aesni_aes128_decrypt_block_ecb(ciphertext, &decryption_keys);
        }

        inline Block encrypt_cbc(
            const Block& plaintext,
            const RoundKeys128& encryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes128_encrypt_block_cbc(plaintext, &encryption_keys, iv, &next_iv);
        }

        inline Block decrypt_cbc(
            const Block& ciphertext,
            const RoundKeys128& decryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes128_decrypt_block_cbc(ciphertext, &decryption_keys, iv, &next_iv);
        }

        inline Block encrypt_cfb(
            const Block& plaintext,
            const RoundKeys128& encryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes128_encrypt_block_cfb(plaintext, &encryption_keys, iv, &next_iv);
        }

        inline Block decrypt_cfb(
            const Block& ciphertext,
            const RoundKeys128& encryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes128_decrypt_block_cfb(ciphertext, &encryption_keys, iv, &next_iv);
        }

        inline Block encrypt_ofb(
            const Block& plaintext,
            const RoundKeys128& encryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes128_encrypt_block_ofb(plaintext, &encryption_keys, iv, &next_iv);
        }

        inline Block decrypt_ofb(
            const Block& ciphertext,
            const RoundKeys128& encryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes128_decrypt_block_ofb(ciphertext, &encryption_keys, iv, &next_iv);
        }

        inline Block encrypt_ctr(
            const Block& plaintext,
            const RoundKeys128& encryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes128_encrypt_block_ctr(plaintext, &encryption_keys, iv, &next_iv);
        }

        inline Block decrypt_ctr(
            const Block& ciphertext,
            const RoundKeys128& encryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes128_decrypt_block_ctr(ciphertext, &encryption_keys, iv, &next_iv);
        }

        inline Block encrypt_ecb(
            const Block& plaintext,
            const RoundKeys192& encryption_keys)
        {
            return aesni_aes192_encrypt_block_ecb(plaintext, &encryption_keys);
        }

        inline Block decrypt_ecb(
            const Block& ciphertext,
            const RoundKeys192& decryption_keys)
        {
            return aesni_aes192_decrypt_block_ecb(ciphertext, &decryption_keys);
        }

        inline Block encrypt_cbc(
            const Block& plaintext,
            const RoundKeys192& encryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes192_encrypt_block_cbc(plaintext, &encryption_keys, iv, &next_iv);
        }

        inline Block decrypt_cbc(
            const Block& ciphertext,
            const RoundKeys192& decryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes192_decrypt_block_cbc(ciphertext, &decryption_keys, iv, &next_iv);
        }

        inline Block encrypt_cfb(
            const Block& plaintext,
            const RoundKeys192& encryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes192_encrypt_block_cfb(plaintext, &encryption_keys, iv, &next_iv);
        }

        inline Block decrypt_cfb(
            const Block& ciphertext,
            const RoundKeys192& encryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes192_decrypt_block_cfb(ciphertext, &encryption_keys, iv, &next_iv);
        }

        inline Block encrypt_ofb(
            const Block& plaintext,
            const RoundKeys192& encryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes192_encrypt_block_ofb(plaintext, &encryption_keys, iv, &next_iv);
        }

        inline Block decrypt_ofb(
            const Block& ciphertext,
            const RoundKeys192& encryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes192_decrypt_block_ofb(ciphertext, &encryption_keys, iv, &next_iv);
        }

        inline Block encrypt_ctr(
            const Block& plaintext,
            const RoundKeys192& encryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes192_encrypt_block_ctr(plaintext, &encryption_keys, iv, &next_iv);
        }

        inline Block decrypt_ctr(
            const Block& ciphertext,
            const RoundKeys192& encryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes192_decrypt_block_ctr(ciphertext, &encryption_keys, iv, &next_iv);
        }

        inline Block encrypt_ecb(
            const Block& plaintext,
            const RoundKeys256& encryption_keys)
        {
            return aesni_aes256_encrypt_block_ecb(plaintext, &encryption_keys);
        }

        inline Block decrypt_ecb(
            const Block& ciphertext,
            const RoundKeys256& decryption_keys)
        {
            return aesni_aes256_decrypt_block_ecb(ciphertext, &decryption_keys);
        }

        inline Block encrypt_cbc(
            const Block& plaintext,
            const RoundKeys256& encryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes256_encrypt_block_cbc(plaintext, &encryption_keys, iv, &next_iv);
        }

        inline Block decrypt_cbc(
            const Block& ciphertext,
            const RoundKeys256& decryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes256_decrypt_block_cbc(ciphertext, &decryption_keys, iv, &next_iv);
        }

        inline Block encrypt_cfb(
            const Block& plaintext,
            const RoundKeys256& encryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes256_encrypt_block_cfb(plaintext, &encryption_keys, iv, &next_iv);
        }

        inline Block decrypt_cfb(
            const Block& ciphertext,
            const RoundKeys256& encryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes256_decrypt_block_cfb(ciphertext, &encryption_keys, iv, &next_iv);
        }

        inline Block encrypt_ofb(
            const Block& plaintext,
            const RoundKeys256& encryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes256_encrypt_block_ofb(plaintext, &encryption_keys, iv, &next_iv);
        }

        inline Block decrypt_ofb(
            const Block& ciphertext,
            const RoundKeys256& encryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes256_decrypt_block_ofb(ciphertext, &encryption_keys, iv, &next_iv);
        }

        inline Block encrypt_ctr(
            const Block& plaintext,
            const RoundKeys256& encryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes256_encrypt_block_ctr(plaintext, &encryption_keys, iv, &next_iv);
        }

        inline Block decrypt_ctr(
            const Block& ciphertext,
            const RoundKeys256& encryption_keys,
            const Block& iv,
            Block& next_iv)
        {
            return aesni_aes256_decrypt_block_ctr(ciphertext, &encryption_keys, iv, &next_iv);
        }

        template <Algorithm>
        struct Types;

        template <>
        struct Types<AESNI_AES128>
        {
            typedef aesni::aes::Block BlockT;
            typedef aesni::aes::Key128 KeyT;
            typedef aesni::aes::RoundKeys128 RoundKeysT;
        };

        template <>
        struct Types<AESNI_AES192>
        {
            typedef aesni::aes::Block BlockT;
            typedef aesni::aes::Key192 KeyT;
            typedef aesni::aes::RoundKeys192 RoundKeysT;
        };

        template <>
        struct Types<AESNI_AES256>
        {
            typedef aesni::aes::Block BlockT;
            typedef aesni::aes::Key256 KeyT;
            typedef aesni::aes::RoundKeys256 RoundKeysT;
        };

        template <Algorithm algorithm, Mode mode>
        class Encrypt;

        template <Algorithm algorithm>
        class Encrypt<algorithm, AESNI_ECB>
        {
        public:
            Encrypt(const typename Types<algorithm>::KeyT& key,
                    const typename Types<algorithm>::BlockT& iv)
            {
                expand_key(key, m_encryption_keys);
                derive_decryption_keys(m_encryption_keys, m_decryption_keys);
            }

            inline typename Types<algorithm>::BlockT encrypt(const typename Types<algorithm>::BlockT& plaintext)
            {
                return encrypt_ecb(plaintext, m_encryption_keys);
            }

            inline typename Types<algorithm>::BlockT decrypt(const typename Types<algorithm>::BlockT& ciphertext)
            {
                return decrypt_ecb(ciphertext, m_decryption_keys);
            }

        private:
            typename Types<algorithm>::RoundKeysT m_encryption_keys;
            typename Types<algorithm>::RoundKeysT m_decryption_keys;
        };

        template <Algorithm algorithm>
        class Encrypt<algorithm, AESNI_CBC>
        {
        public:
            Encrypt(const typename Types<algorithm>::KeyT& key,
                    const typename Types<algorithm>::BlockT& iv)
                : m_iv(iv)
            {
                expand_key(key, m_encryption_keys);
                derive_decryption_keys(m_encryption_keys, m_decryption_keys);
            }

            inline typename Types<algorithm>::BlockT encrypt(const typename Types<algorithm>::BlockT& plaintext)
            {
                return encrypt_cbc(plaintext, m_encryption_keys, m_iv, m_iv);
            }

            inline typename Types<algorithm>::BlockT decrypt(const typename Types<algorithm>::BlockT& ciphertext)
            {
                return decrypt_cbc(ciphertext, m_decryption_keys, m_iv, m_iv);
            }

        private:
            typename Types<algorithm>::BlockT m_iv;
            typename Types<algorithm>::RoundKeysT m_encryption_keys;
            typename Types<algorithm>::RoundKeysT m_decryption_keys;
        };

        template <Algorithm algorithm>
        class Encrypt<algorithm, AESNI_CFB>
        {
        public:
            Encrypt(const typename Types<algorithm>::KeyT& key,
                    const typename Types<algorithm>::BlockT& iv)
                : m_iv(iv)
            {
                expand_key(key, m_encryption_keys);
            }

            inline typename Types<algorithm>::BlockT encrypt(const typename Types<algorithm>::BlockT& plaintext)
            {
                return encrypt_cfb(plaintext, m_encryption_keys, m_iv, m_iv);
            }

            inline typename Types<algorithm>::BlockT decrypt(const typename Types<algorithm>::BlockT& ciphertext)
            {
                return decrypt_cfb(ciphertext, m_encryption_keys, m_iv, m_iv);
            }

        private:
            typename Types<algorithm>::BlockT m_iv;
            typename Types<algorithm>::RoundKeysT m_encryption_keys;
        };

        template <Algorithm algorithm>
        class Encrypt<algorithm, AESNI_OFB>
        {
        public:
            Encrypt(const typename Types<algorithm>::KeyT& key,
                    const typename Types<algorithm>::BlockT& iv)
                : m_iv(iv)
            {
                expand_key(key, m_encryption_keys);
            }

            inline typename Types<algorithm>::BlockT encrypt(const typename Types<algorithm>::BlockT& plaintext)
            {
                return encrypt_ofb(plaintext, m_encryption_keys, m_iv, m_iv);
            }

            inline typename Types<algorithm>::BlockT decrypt(const typename Types<algorithm>::BlockT& ciphertext)
            {
                return decrypt_ofb(ciphertext, m_encryption_keys, m_iv, m_iv);
            }

        private:
            typename Types<algorithm>::BlockT m_iv;
            typename Types<algorithm>::RoundKeysT m_encryption_keys;
        };

        template <Algorithm algorithm>
        class Encrypt<algorithm, AESNI_CTR>
        {
        public:
            Encrypt(const typename Types<algorithm>::KeyT& key,
                    const typename Types<algorithm>::BlockT& iv)
                : m_iv(iv)
            {
                expand_key(key, m_encryption_keys);
            }

            inline typename Types<algorithm>::BlockT encrypt(const typename Types<algorithm>::BlockT& plaintext)
            {
                return encrypt_ctr(plaintext, m_encryption_keys, m_iv, m_iv);
            }

            inline typename Types<algorithm>::BlockT decrypt(const typename Types<algorithm>::BlockT& ciphertext)
            {
                return decrypt_ctr(ciphertext, m_encryption_keys, m_iv, m_iv);
            }

        private:
            typename Types<algorithm>::RoundKeysT m_encryption_keys;
            typename Types<algorithm>::BlockT m_iv;
        };
    }
}