aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/aes/src/box_aes.c
blob: 4d08d10aad0d8abc3929f2c3f7481788d8d40a44 (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
/*
 * Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
 * This file is part of the "AES tools" project.
 * For details, see https://github.com/egor-tensin/aes-tools.
 * Distributed under the MIT License.
 */

#include <aes/all.h>

#include <stdlib.h>
#include <string.h>

static AES_StatusCode aes_box_derive_params_aes128(
    const AES_BoxKey* box_key,
    AES_BoxEncryptionRoundKeys* encryption_keys,
    AES_BoxDecryptionRoundKeys* decryption_keys,
    AES_ErrorDetails* err_details)
{
    AES_UNUSED_PARAMETER(err_details);
    aes_AES128_expand_key_(
        box_key->aes128_key.key,
        &encryption_keys->aes128_encryption_keys);
    aes_AES128_derive_decryption_keys_(
        &encryption_keys->aes128_encryption_keys,
        &decryption_keys->aes128_decryption_keys);
    return AES_SUCCESS;
}

static AES_StatusCode aes_box_derive_params_aes192(
    const AES_BoxKey* box_key,
    AES_BoxEncryptionRoundKeys* encryption_keys,
    AES_BoxDecryptionRoundKeys* decryption_keys,
    AES_ErrorDetails* err_details)
{
    AES_UNUSED_PARAMETER(err_details);
    aes_AES192_expand_key_(
        box_key->aes192_key.lo,
        box_key->aes192_key.hi,
        &encryption_keys->aes192_encryption_keys);
    aes_AES192_derive_decryption_keys_(
        &encryption_keys->aes192_encryption_keys,
        &decryption_keys->aes192_decryption_keys);
    return AES_SUCCESS;
}

static AES_StatusCode aes_box_derive_params_aes256(
    const AES_BoxKey* box_key,
    AES_BoxEncryptionRoundKeys* encryption_keys,
    AES_BoxDecryptionRoundKeys* decryption_keys,
    AES_ErrorDetails* err_details)
{
    AES_UNUSED_PARAMETER(err_details);
    aes_AES256_expand_key_(
        box_key->aes256_key.lo,
        box_key->aes256_key.hi,
        &encryption_keys->aes256_encryption_keys);
    aes_AES256_derive_decryption_keys_(
        &encryption_keys->aes256_encryption_keys,
        &decryption_keys->aes256_decryption_keys);
    return AES_SUCCESS;
}

static AES_StatusCode aes_box_parse_block_aes(
    AES_BoxBlock* dest,
    const char* src,
    AES_ErrorDetails* err_details)
{
    if (dest == NULL)
        return aes_error_null_argument(err_details, "dest");

    return aes_AES_parse_block(&dest->aes_block, src, err_details);
}

static AES_StatusCode aes_box_parse_key_aes128(
    AES_BoxKey* dest,
    const char* src,
    AES_ErrorDetails* err_details)
{
    if (dest == NULL)
        return aes_error_null_argument(err_details, "dest");

    return aes_AES128_parse_key(&dest->aes128_key, src, err_details);
}

static AES_StatusCode aes_box_parse_key_aes192(
    AES_BoxKey* dest,
    const char* src,
    AES_ErrorDetails* err_details)
{
    if (dest == NULL)
        return aes_error_null_argument(err_details, "dest");

    return aes_AES192_parse_key(&dest->aes192_key, src, err_details);
}

static AES_StatusCode aes_box_parse_key_aes256(
    AES_BoxKey* dest,
    const char* src,
    AES_ErrorDetails* err_details)
{
    if (dest == NULL)
        return aes_error_null_argument(err_details, "dest");

    return aes_AES256_parse_key(&dest->aes256_key, src, err_details);
}

static AES_StatusCode aes_box_format_block_aes(
    AES_BoxBlockString* dest,
    const AES_BoxBlock* src,
    AES_ErrorDetails* err_details)
{
    if (dest == NULL)
        return aes_error_null_argument(err_details, "dest");
    if (src == NULL)
        return aes_error_null_argument(err_details, "src");

    return aes_AES128_format_block(&dest->aes, &src->aes_block, err_details);
}

static AES_StatusCode aes_box_format_key_aes128(
    AES_BoxKeyString* dest,
    const AES_BoxKey* src,
    AES_ErrorDetails* err_details)
{
    if (dest == NULL)
        return aes_error_null_argument(err_details, "dest");
    if (src == NULL)
        return aes_error_null_argument(err_details, "src");

    return aes_AES128_format_key(&dest->aes128, &src->aes128_key, err_details);
}

static AES_StatusCode aes_box_format_key_aes192(
    AES_BoxKeyString* dest,
    const AES_BoxKey* src,
    AES_ErrorDetails* err_details)
{
    if (dest == NULL)
        return aes_error_null_argument(err_details, "dest");
    if (src == NULL)
        return aes_error_null_argument(err_details, "src");

    return aes_AES192_format_key(&dest->aes192, &src->aes192_key, err_details);
}

static AES_StatusCode aes_box_format_key_aes256(
    AES_BoxKeyString* dest,
    const AES_BoxKey* src,
    AES_ErrorDetails* err_details)
{
    if (dest == NULL)
        return aes_error_null_argument(err_details, "dest");
    if (src == NULL)
        return aes_error_null_argument(err_details, "src");

    return aes_AES256_format_key(&dest->aes256, &src->aes256_key, err_details);
}

static AES_StatusCode aes_box_xor_block_aes(
    AES_BoxBlock* dest,
    const AES_BoxBlock* src,
    AES_ErrorDetails* err_details)
{
    AES_UNUSED_PARAMETER(err_details);
    dest->aes_block = aes_AES_xor_blocks(dest->aes_block, src->aes_block);
    return AES_SUCCESS;
}

static AES_StatusCode aes_box_inc_block_aes(
    AES_BoxBlock* ctr,
    AES_ErrorDetails* err_details)
{
    AES_UNUSED_PARAMETER(err_details);
    ctr->aes_block = aes_AES_inc_block(ctr->aes_block);
    return AES_SUCCESS;
}

static AES_StatusCode aes_box_get_block_size_aes(
    size_t* block_size,
    AES_ErrorDetails* err_details)
{
    AES_UNUSED_PARAMETER(err_details);
    *block_size = 16;
    return AES_SUCCESS;
}

static AES_StatusCode aes_box_store_block_aes(
    void* dest,
    const AES_BoxBlock* src,
    AES_ErrorDetails* err_details)
{
    AES_UNUSED_PARAMETER(err_details);
    aes_store_block128(dest, src->aes_block);
    return AES_SUCCESS;
}

static AES_StatusCode aes_box_load_block_aes(
    AES_BoxBlock* dest,
    const void* src,
    AES_ErrorDetails* err_details)
{
    AES_UNUSED_PARAMETER(err_details);
    dest->aes_block = aes_load_block128(src);
    return AES_SUCCESS;
}

static AES_StatusCode aes_box_encrypt_block_aes128(
    const AES_BoxBlock* input,
    const AES_BoxEncryptionRoundKeys* params,
    AES_BoxBlock* output,
    AES_ErrorDetails* err_details)
{
    AES_UNUSED_PARAMETER(err_details);
    output->aes_block = aes_AES128_encrypt_block_(
        input->aes_block,
        &params->aes128_encryption_keys);
    return AES_SUCCESS;
}

static AES_StatusCode aes_box_decrypt_block_aes128(
    const AES_BoxBlock* input,
    const AES_BoxDecryptionRoundKeys* params,
    AES_BoxBlock* output,
    AES_ErrorDetails* err_details)
{
    AES_UNUSED_PARAMETER(err_details);
    output->aes_block = aes_AES128_decrypt_block_(
        input->aes_block,
        &params->aes128_decryption_keys);
    return AES_SUCCESS;
}

static AES_StatusCode aes_box_encrypt_block_aes192(
    const AES_BoxBlock* input,
    const AES_BoxEncryptionRoundKeys* params,
    AES_BoxBlock* output,
    AES_ErrorDetails* err_details)
{
    AES_UNUSED_PARAMETER(err_details);
    output->aes_block = aes_AES192_encrypt_block_(
        input->aes_block,
        &params->aes192_encryption_keys);
    return AES_SUCCESS;
}

static AES_StatusCode aes_box_decrypt_block_aes192(
    const AES_BoxBlock* input,
    const AES_BoxDecryptionRoundKeys* params,
    AES_BoxBlock* output,
    AES_ErrorDetails* err_details)
{
    AES_UNUSED_PARAMETER(err_details);
    output->aes_block = aes_AES192_decrypt_block_(
        input->aes_block,
        &params->aes192_decryption_keys);
    return AES_SUCCESS;
}

static AES_StatusCode aes_box_encrypt_block_aes256(
    const AES_BoxBlock* input,
    const AES_BoxEncryptionRoundKeys* params,
    AES_BoxBlock* output,
    AES_ErrorDetails* err_details)
{
    AES_UNUSED_PARAMETER(err_details);
    output->aes_block = aes_AES256_encrypt_block_(
        input->aes_block,
        &params->aes256_encryption_keys);
    return AES_SUCCESS;
}

static AES_StatusCode aes_box_decrypt_block_aes256(
    const AES_BoxBlock* input,
    const AES_BoxDecryptionRoundKeys* params,
    AES_BoxBlock* output,
    AES_ErrorDetails* err_details)
{
    AES_UNUSED_PARAMETER(err_details);
    output->aes_block = aes_AES256_decrypt_block_(
        input->aes_block,
        &params->aes256_decryption_keys);
    return AES_SUCCESS;
}

AES_BoxAlgorithmInterface aes_box_algorithm_aes128 =
{
    &aes_box_derive_params_aes128,
    &aes_box_parse_block_aes,
    &aes_box_parse_key_aes128,
    &aes_box_format_block_aes,
    &aes_box_format_key_aes128,
    &aes_box_encrypt_block_aes128,
    &aes_box_decrypt_block_aes128,
    &aes_box_xor_block_aes,
    &aes_box_inc_block_aes,
    &aes_box_get_block_size_aes,
    &aes_box_store_block_aes,
    &aes_box_load_block_aes,
};

AES_BoxAlgorithmInterface aes_box_algorithm_aes192 =
{
    &aes_box_derive_params_aes192,
    &aes_box_parse_block_aes,
    &aes_box_parse_key_aes192,
    &aes_box_format_block_aes,
    &aes_box_format_key_aes192,
    &aes_box_encrypt_block_aes192,
    &aes_box_decrypt_block_aes192,
    &aes_box_xor_block_aes,
    &aes_box_inc_block_aes,
    &aes_box_get_block_size_aes,
    &aes_box_store_block_aes,
    &aes_box_load_block_aes,
};

AES_BoxAlgorithmInterface aes_box_algorithm_aes256 =
{
    &aes_box_derive_params_aes256,
    &aes_box_parse_block_aes,
    &aes_box_parse_key_aes256,
    &aes_box_format_block_aes,
    &aes_box_format_key_aes256,
    &aes_box_encrypt_block_aes256,
    &aes_box_decrypt_block_aes256,
    &aes_box_xor_block_aes,
    &aes_box_inc_block_aes,
    &aes_box_get_block_size_aes,
    &aes_box_store_block_aes,
    &aes_box_load_block_aes,
};