libaaruformat 1.0
Aaru Data Preservation Suite - Format Library
Loading...
Searching...
No Matches
aes128.c
Go to the documentation of this file.
1/*
2 * This file is part of the Aaru Data Preservation Suite.
3 * Copyright (c) 2019-2026 Natalia Portillo.
4 *
5 * This library is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU Lesser General Public License as
7 * published by the Free Software Foundation; version 2.1 of the License.
8 *
9 * This library is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, see
16 * <https://www.gnu.org/licenses/>.
17 *
18 * AES-128 CBC encrypt/decrypt implementation.
19 * Derived from public domain tiny-AES-c by kokke.
20 */
21
22#include <stdint.h>
23#include <string.h>
24
25#include "aes128.h"
26
27#define AES_BLOCK_SIZE 16
28#define AES_KEY_SIZE 16
29#define AES_NUM_ROUNDS 10
30#define AES_KEY_EXP_SIZE 176 /* 16 * (10 + 1) */
31
32/* S-box */
33static const uint8_t sbox[256] = {
34 0x63, 0x7c, 0x77, 0x7b, 0xf2, 0x6b, 0x6f, 0xc5, 0x30, 0x01, 0x67, 0x2b, 0xfe, 0xd7, 0xab, 0x76, 0xca, 0x82, 0xc9,
35 0x7d, 0xfa, 0x59, 0x47, 0xf0, 0xad, 0xd4, 0xa2, 0xaf, 0x9c, 0xa4, 0x72, 0xc0, 0xb7, 0xfd, 0x93, 0x26, 0x36, 0x3f,
36 0xf7, 0xcc, 0x34, 0xa5, 0xe5, 0xf1, 0x71, 0xd8, 0x31, 0x15, 0x04, 0xc7, 0x23, 0xc3, 0x18, 0x96, 0x05, 0x9a, 0x07,
37 0x12, 0x80, 0xe2, 0xeb, 0x27, 0xb2, 0x75, 0x09, 0x83, 0x2c, 0x1a, 0x1b, 0x6e, 0x5a, 0xa0, 0x52, 0x3b, 0xd6, 0xb3,
38 0x29, 0xe3, 0x2f, 0x84, 0x53, 0xd1, 0x00, 0xed, 0x20, 0xfc, 0xb1, 0x5b, 0x6a, 0xcb, 0xbe, 0x39, 0x4a, 0x4c, 0x58,
39 0xcf, 0xd0, 0xef, 0xaa, 0xfb, 0x43, 0x4d, 0x33, 0x85, 0x45, 0xf9, 0x02, 0x7f, 0x50, 0x3c, 0x9f, 0xa8, 0x51, 0xa3,
40 0x40, 0x8f, 0x92, 0x9d, 0x38, 0xf5, 0xbc, 0xb6, 0xda, 0x21, 0x10, 0xff, 0xf3, 0xd2, 0xcd, 0x0c, 0x13, 0xec, 0x5f,
41 0x97, 0x44, 0x17, 0xc4, 0xa7, 0x7e, 0x3d, 0x64, 0x5d, 0x19, 0x73, 0x60, 0x81, 0x4f, 0xdc, 0x22, 0x2a, 0x90, 0x88,
42 0x46, 0xee, 0xb8, 0x14, 0xde, 0x5e, 0x0b, 0xdb, 0xe0, 0x32, 0x3a, 0x0a, 0x49, 0x06, 0x24, 0x5c, 0xc2, 0xd3, 0xac,
43 0x62, 0x91, 0x95, 0xe4, 0x79, 0xe7, 0xc8, 0x37, 0x6d, 0x8d, 0xd5, 0x4e, 0xa9, 0x6c, 0x56, 0xf4, 0xea, 0x65, 0x7a,
44 0xae, 0x08, 0xba, 0x78, 0x25, 0x2e, 0x1c, 0xa6, 0xb4, 0xc6, 0xe8, 0xdd, 0x74, 0x1f, 0x4b, 0xbd, 0x8b, 0x8a, 0x70,
45 0x3e, 0xb5, 0x66, 0x48, 0x03, 0xf6, 0x0e, 0x61, 0x35, 0x57, 0xb9, 0x86, 0xc1, 0x1d, 0x9e, 0xe1, 0xf8, 0x98, 0x11,
46 0x69, 0xd9, 0x8e, 0x94, 0x9b, 0x1e, 0x87, 0xe9, 0xce, 0x55, 0x28, 0xdf, 0x8c, 0xa1, 0x89, 0x0d, 0xbf, 0xe6, 0x42,
47 0x68, 0x41, 0x99, 0x2d, 0x0f, 0xb0, 0x54, 0xbb, 0x16};
48
49/* Inverse S-box */
50static const uint8_t rsbox[256] = {
51 0x52, 0x09, 0x6a, 0xd5, 0x30, 0x36, 0xa5, 0x38, 0xbf, 0x40, 0xa3, 0x9e, 0x81, 0xf3, 0xd7, 0xfb, 0x7c, 0xe3, 0x39,
52 0x82, 0x9b, 0x2f, 0xff, 0x87, 0x34, 0x8e, 0x43, 0x44, 0xc4, 0xde, 0xe9, 0xcb, 0x54, 0x7b, 0x94, 0x32, 0xa6, 0xc2,
53 0x23, 0x3d, 0xee, 0x4c, 0x95, 0x0b, 0x42, 0xfa, 0xc3, 0x4e, 0x08, 0x2e, 0xa1, 0x66, 0x28, 0xd9, 0x24, 0xb2, 0x76,
54 0x5b, 0xa2, 0x49, 0x6d, 0x8b, 0xd1, 0x25, 0x72, 0xf8, 0xf6, 0x64, 0x86, 0x68, 0x98, 0x16, 0xd4, 0xa4, 0x5c, 0xcc,
55 0x5d, 0x65, 0xb6, 0x92, 0x6c, 0x70, 0x48, 0x50, 0xfd, 0xed, 0xb9, 0xda, 0x5e, 0x15, 0x46, 0x57, 0xa7, 0x8d, 0x9d,
56 0x84, 0x90, 0xd8, 0xab, 0x00, 0x8c, 0xbc, 0xd3, 0x0a, 0xf7, 0xe4, 0x58, 0x05, 0xb8, 0xb3, 0x45, 0x06, 0xd0, 0x2c,
57 0x1e, 0x8f, 0xca, 0x3f, 0x0f, 0x02, 0xc1, 0xaf, 0xbd, 0x03, 0x01, 0x13, 0x8a, 0x6b, 0x3a, 0x91, 0x11, 0x41, 0x4f,
58 0x67, 0xdc, 0xea, 0x97, 0xf2, 0xcf, 0xce, 0xf0, 0xb4, 0xe6, 0x73, 0x96, 0xac, 0x74, 0x22, 0xe7, 0xad, 0x35, 0x85,
59 0xe2, 0xf9, 0x37, 0xe8, 0x1c, 0x75, 0xdf, 0x6e, 0x47, 0xf1, 0x1a, 0x71, 0x1d, 0x29, 0xc5, 0x89, 0x6f, 0xb7, 0x62,
60 0x0e, 0xaa, 0x18, 0xbe, 0x1b, 0xfc, 0x56, 0x3e, 0x4b, 0xc6, 0xd2, 0x79, 0x20, 0x9a, 0xdb, 0xc0, 0xfe, 0x78, 0xcd,
61 0x5a, 0xf4, 0x1f, 0xdd, 0xa8, 0x33, 0x88, 0x07, 0xc7, 0x31, 0xb1, 0x12, 0x10, 0x59, 0x27, 0x80, 0xec, 0x5f, 0x60,
62 0x51, 0x7f, 0xa9, 0x19, 0xb5, 0x4a, 0x0d, 0x2d, 0xe5, 0x7a, 0x9f, 0x93, 0xc9, 0x9c, 0xef, 0xa0, 0xe0, 0x3b, 0x4d,
63 0xae, 0x2a, 0xf5, 0xb0, 0xc8, 0xeb, 0xbb, 0x3c, 0x83, 0x53, 0x99, 0x61, 0x17, 0x2b, 0x04, 0x7e, 0xba, 0x77, 0xd6,
64 0x26, 0xe1, 0x69, 0x14, 0x63, 0x55, 0x21, 0x0c, 0x7d};
65
66/* Round constant */
67static const uint8_t rcon[11] = {0x8d, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36};
68
69typedef struct
70{
73
74static uint8_t xtime(uint8_t x) { return (uint8_t)((x << 1) ^ (((x >> 7) & 1) * 0x1b)); }
75
76static void key_expansion(aes128_ctx *ctx, const uint8_t key[16])
77{
78 uint8_t tempa[4];
79
80 memcpy(ctx->round_key, key, AES_KEY_SIZE);
81
82 for(int i = 4; i < 4 * (AES_NUM_ROUNDS + 1); i++)
83 {
84 int k = (i - 1) * 4;
85
86 tempa[0] = ctx->round_key[k + 0];
87 tempa[1] = ctx->round_key[k + 1];
88 tempa[2] = ctx->round_key[k + 2];
89 tempa[3] = ctx->round_key[k + 3];
90
91 if(i % 4 == 0)
92 {
93 /* RotWord */
94 uint8_t u8tmp = tempa[0];
95 tempa[0] = tempa[1];
96 tempa[1] = tempa[2];
97 tempa[2] = tempa[3];
98 tempa[3] = u8tmp;
99
100 /* SubWord */
101 tempa[0] = sbox[tempa[0]];
102 tempa[1] = sbox[tempa[1]];
103 tempa[2] = sbox[tempa[2]];
104 tempa[3] = sbox[tempa[3]];
105
106 tempa[0] ^= rcon[i / 4];
107 }
108
109 int j = i * 4;
110 int m = (i - 4) * 4;
111 ctx->round_key[j + 0] = ctx->round_key[m + 0] ^ tempa[0];
112 ctx->round_key[j + 1] = ctx->round_key[m + 1] ^ tempa[1];
113 ctx->round_key[j + 2] = ctx->round_key[m + 2] ^ tempa[2];
114 ctx->round_key[j + 3] = ctx->round_key[m + 3] ^ tempa[3];
115 }
116}
117
118static void add_round_key(uint8_t round, uint8_t state[4][4], const uint8_t *round_key)
119{
120 for(int i = 0; i < 4; i++)
121 for(int j = 0; j < 4; j++) state[i][j] ^= round_key[(round * 16) + (i * 4) + j];
122}
123
124static void sub_bytes(uint8_t state[4][4])
125{
126 for(int i = 0; i < 4; i++)
127 for(int j = 0; j < 4; j++) state[j][i] = sbox[state[j][i]];
128}
129
130static void inv_sub_bytes(uint8_t state[4][4])
131{
132 for(int i = 0; i < 4; i++)
133 for(int j = 0; j < 4; j++) state[j][i] = rsbox[state[j][i]];
134}
135
136static void shift_rows(uint8_t state[4][4])
137{
138 uint8_t temp;
139
140 /* Row 1: shift left by 1 */
141 temp = state[0][1];
142 state[0][1] = state[1][1];
143 state[1][1] = state[2][1];
144 state[2][1] = state[3][1];
145 state[3][1] = temp;
146
147 /* Row 2: shift left by 2 */
148 temp = state[0][2];
149 state[0][2] = state[2][2];
150 state[2][2] = temp;
151 temp = state[1][2];
152 state[1][2] = state[3][2];
153 state[3][2] = temp;
154
155 /* Row 3: shift left by 3 */
156 temp = state[0][3];
157 state[0][3] = state[3][3];
158 state[3][3] = state[2][3];
159 state[2][3] = state[1][3];
160 state[1][3] = temp;
161}
162
163static void inv_shift_rows(uint8_t state[4][4])
164{
165 uint8_t temp;
166
167 /* Row 1: shift right by 1 */
168 temp = state[3][1];
169 state[3][1] = state[2][1];
170 state[2][1] = state[1][1];
171 state[1][1] = state[0][1];
172 state[0][1] = temp;
173
174 /* Row 2: shift right by 2 */
175 temp = state[0][2];
176 state[0][2] = state[2][2];
177 state[2][2] = temp;
178 temp = state[1][2];
179 state[1][2] = state[3][2];
180 state[3][2] = temp;
181
182 /* Row 3: shift right by 3 */
183 temp = state[0][3];
184 state[0][3] = state[1][3];
185 state[1][3] = state[2][3];
186 state[2][3] = state[3][3];
187 state[3][3] = temp;
188}
189
190static void mix_columns(uint8_t state[4][4])
191{
192 for(int i = 0; i < 4; i++)
193 {
194 uint8_t t = state[i][0];
195 uint8_t tmp = state[i][0] ^ state[i][1] ^ state[i][2] ^ state[i][3];
196
197 uint8_t tm = state[i][0] ^ state[i][1];
198 tm = xtime(tm);
199 state[i][0] ^= tm ^ tmp;
200
201 tm = state[i][1] ^ state[i][2];
202 tm = xtime(tm);
203 state[i][1] ^= tm ^ tmp;
204
205 tm = state[i][2] ^ state[i][3];
206 tm = xtime(tm);
207 state[i][2] ^= tm ^ tmp;
208
209 tm = state[i][3] ^ t;
210 tm = xtime(tm);
211 state[i][3] ^= tm ^ tmp;
212 }
213}
214
215#define MULTIPLY(x, y) \
216 (((y & 1) * x) ^ ((y >> 1 & 1) * xtime(x)) ^ ((y >> 2 & 1) * xtime(xtime(x))) ^ \
217 ((y >> 3 & 1) * xtime(xtime(xtime(x)))) ^ ((y >> 4 & 1) * xtime(xtime(xtime(xtime(x))))))
218
219static void inv_mix_columns(uint8_t state[4][4])
220{
221 for(int i = 0; i < 4; i++)
222 {
223 uint8_t a = state[i][0];
224 uint8_t b = state[i][1];
225 uint8_t c = state[i][2];
226 uint8_t d = state[i][3];
227
228 state[i][0] = MULTIPLY(a, 14) ^ MULTIPLY(b, 11) ^ MULTIPLY(c, 13) ^ MULTIPLY(d, 9);
229 state[i][1] = MULTIPLY(a, 9) ^ MULTIPLY(b, 14) ^ MULTIPLY(c, 11) ^ MULTIPLY(d, 13);
230 state[i][2] = MULTIPLY(a, 13) ^ MULTIPLY(b, 9) ^ MULTIPLY(c, 14) ^ MULTIPLY(d, 11);
231 state[i][3] = MULTIPLY(a, 11) ^ MULTIPLY(b, 13) ^ MULTIPLY(c, 9) ^ MULTIPLY(d, 14);
232 }
233}
234
235static void cipher(uint8_t state[4][4], const uint8_t *round_key)
236{
237 add_round_key(0, state, round_key);
238
239 for(uint8_t round = 1; round < AES_NUM_ROUNDS; round++)
240 {
241 sub_bytes(state);
242 shift_rows(state);
243 mix_columns(state);
244 add_round_key(round, state, round_key);
245 }
246
247 sub_bytes(state);
248 shift_rows(state);
249 add_round_key(AES_NUM_ROUNDS, state, round_key);
250}
251
252static void inv_cipher(uint8_t state[4][4], const uint8_t *round_key)
253{
254 add_round_key(AES_NUM_ROUNDS, state, round_key);
255
256 for(uint8_t round = AES_NUM_ROUNDS - 1; round > 0; round--)
257 {
258 inv_shift_rows(state);
259 inv_sub_bytes(state);
260 add_round_key(round, state, round_key);
261 inv_mix_columns(state);
262 }
263
264 inv_shift_rows(state);
265 inv_sub_bytes(state);
266 add_round_key(0, state, round_key);
267}
268
269static void xor_block(uint8_t *buf, const uint8_t *xor_val)
270{
271 for(int i = 0; i < AES_BLOCK_SIZE; i++) buf[i] ^= xor_val[i];
272}
273
274void aes128_cbc_encrypt(const uint8_t key[16], const uint8_t iv[16], uint8_t *data, uint32_t length)
275{
276 aes128_ctx ctx;
277 uint8_t iv_buf[AES_BLOCK_SIZE];
278
279 key_expansion(&ctx, key);
280 memcpy(iv_buf, iv, AES_BLOCK_SIZE);
281
282 for(uint32_t i = 0; i < length; i += AES_BLOCK_SIZE)
283 {
284 xor_block(data + i, iv_buf);
285 cipher((uint8_t (*)[4])(data + i), ctx.round_key);
286 memcpy(iv_buf, data + i, AES_BLOCK_SIZE);
287 }
288}
289
290void aes128_cbc_decrypt(const uint8_t key[16], const uint8_t iv[16], uint8_t *data, uint32_t length)
291{
292 aes128_ctx ctx;
293 uint8_t iv_buf[AES_BLOCK_SIZE];
294 uint8_t next_iv[AES_BLOCK_SIZE];
295
296 key_expansion(&ctx, key);
297 memcpy(iv_buf, iv, AES_BLOCK_SIZE);
298
299 for(uint32_t i = 0; i < length; i += AES_BLOCK_SIZE)
300 {
301 memcpy(next_iv, data + i, AES_BLOCK_SIZE);
302 inv_cipher((uint8_t (*)[4])(data + i), ctx.round_key);
303 xor_block(data + i, iv_buf);
304 memcpy(iv_buf, next_iv, AES_BLOCK_SIZE);
305 }
306}
#define AES_KEY_SIZE
Definition aes128.c:28
static void mix_columns(uint8_t state[4][4])
Definition aes128.c:190
#define MULTIPLY(x, y)
Definition aes128.c:215
#define AES_KEY_EXP_SIZE
Definition aes128.c:30
static void shift_rows(uint8_t state[4][4])
Definition aes128.c:136
static void inv_cipher(uint8_t state[4][4], const uint8_t *round_key)
Definition aes128.c:252
static void key_expansion(aes128_ctx *ctx, const uint8_t key[16])
Definition aes128.c:76
static const uint8_t rsbox[256]
Definition aes128.c:50
static uint8_t xtime(uint8_t x)
Definition aes128.c:74
static void inv_mix_columns(uint8_t state[4][4])
Definition aes128.c:219
void aes128_cbc_decrypt(const uint8_t key[16], const uint8_t iv[16], uint8_t *data, uint32_t length)
AES-128 CBC decrypt data in-place.
Definition aes128.c:290
#define AES_NUM_ROUNDS
Definition aes128.c:29
static void sub_bytes(uint8_t state[4][4])
Definition aes128.c:124
static void inv_sub_bytes(uint8_t state[4][4])
Definition aes128.c:130
static void cipher(uint8_t state[4][4], const uint8_t *round_key)
Definition aes128.c:235
static void inv_shift_rows(uint8_t state[4][4])
Definition aes128.c:163
static const uint8_t sbox[256]
Definition aes128.c:33
static const uint8_t rcon[11]
Definition aes128.c:67
static void xor_block(uint8_t *buf, const uint8_t *xor_val)
Definition aes128.c:269
void aes128_cbc_encrypt(const uint8_t key[16], const uint8_t iv[16], uint8_t *data, uint32_t length)
AES-128 CBC encrypt data in-place.
Definition aes128.c:274
static void add_round_key(uint8_t round, uint8_t state[4][4], const uint8_t *round_key)
Definition aes128.c:118
#define AES_BLOCK_SIZE
Definition aes128.c:27
uint8_t round_key[176]
Definition aes128.c:71