176
|
1 /*
|
|
2 * AES 128 bit decryption
|
|
3 * Copyright (c) 2007 Reimar Doeffinger.
|
|
4 *
|
|
5 * This file is part of FFmpeg.
|
|
6 *
|
|
7 * FFmpeg is free software; you can redistribute it and/or
|
|
8 * modify it under the terms of the GNU Lesser General Public
|
|
9 * License as published by the Free Software Foundation; either
|
|
10 * version 2.1 of the License, or (at your option) any later version.
|
|
11 *
|
|
12 * FFmpeg is distributed in the hope that it will be useful,
|
|
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
15 * Lesser General Public License for more details.
|
|
16 *
|
|
17 * You should have received a copy of the GNU Lesser General Public
|
|
18 * License along with FFmpeg; if not, write to the Free Software
|
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
20 *
|
|
21 * Based on public domain AES reference code by Paulo Barreto, Vincent Rijmen
|
|
22 */
|
|
23
|
|
24 #include "common.h"
|
|
25 #include "aes128.h"
|
|
26
|
|
27 #ifdef CONFIG_GCRYPT
|
|
28 AES128Context *aes128_init(void) {
|
|
29 AES128Context *res = av_malloc(sizeof(*res));
|
|
30 gcry_cipher_open(&res->ch, GCRY_CIPHER_AES, GCRY_CIPHER_MODE_CBC, 0);
|
|
31 return res;
|
|
32 }
|
|
33 void aes128_set_key(AES128Context *c, const uint8_t *key) {
|
|
34 gcry_cipher_ctl(c->ch, GCRYCTL_SET_KEY, key, 16);
|
|
35 }
|
|
36 void aes128_cbc_decrypt(AES128Context *c, uint8_t *mem, int blockcnt, uint8_t *IV) {
|
|
37 blockcnt <<= 4;
|
|
38 gcry_cipher_ctl(c->ch, GCRYCTL_SET_IV, IV, 16);
|
|
39 memcpy(IV, &mem[blockcnt - 16], 16);
|
|
40 gcry_cipher_decrypt(c->ch, mem, blockcnt, mem, blockcnt);
|
|
41 }
|
|
42 #else
|
|
43 static const uint8_t rcon[10] = {
|
|
44 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36
|
|
45 };
|
|
46 static const uint8_t logtbl[256] = {
|
|
47 0, 0, 25, 1, 50, 2, 26, 198, 75, 199, 27, 104, 51, 238, 223, 3,
|
|
48 100, 4, 224, 14, 52, 141, 129, 239, 76, 113, 8, 200, 248, 105, 28, 193,
|
|
49 125, 194, 29, 181, 249, 185, 39, 106, 77, 228, 166, 114, 154, 201, 9, 120,
|
|
50 101, 47, 138, 5, 33, 15, 225, 36, 18, 240, 130, 69, 53, 147, 218, 142,
|
|
51 150, 143, 219, 189, 54, 208, 206, 148, 19, 92, 210, 241, 64, 70, 131, 56,
|
|
52 102, 221, 253, 48, 191, 6, 139, 98, 179, 37, 226, 152, 34, 136, 145, 16,
|
|
53 126, 110, 72, 195, 163, 182, 30, 66, 58, 107, 40, 84, 250, 133, 61, 186,
|
|
54 43, 121, 10, 21, 155, 159, 94, 202, 78, 212, 172, 229, 243, 115, 167, 87,
|
|
55 175, 88, 168, 80, 244, 234, 214, 116, 79, 174, 233, 213, 231, 230, 173, 232,
|
|
56 44, 215, 117, 122, 235, 22, 11, 245, 89, 203, 95, 176, 156, 169, 81, 160,
|
|
57 127, 12, 246, 111, 23, 196, 73, 236, 216, 67, 31, 45, 164, 118, 123, 183,
|
|
58 204, 187, 62, 90, 251, 96, 177, 134, 59, 82, 161, 108, 170, 85, 41, 157,
|
|
59 151, 178, 135, 144, 97, 190, 220, 252, 188, 149, 207, 205, 55, 63, 91, 209,
|
|
60 83, 57, 132, 60, 65, 162, 109, 71, 20, 42, 158, 93, 86, 242, 211, 171,
|
|
61 68, 17, 146, 217, 35, 32, 46, 137, 180, 124, 184, 38, 119, 153, 227, 165,
|
|
62 103, 74, 237, 222, 197, 49, 254, 24, 13, 99, 140, 128, 192, 247, 112, 7
|
|
63 };
|
|
64 static const uint8_t invsubst[256] = {
|
|
65 82, 9, 106, 213, 48, 54, 165, 56, 191, 64, 163, 158, 129, 243, 215, 251,
|
|
66 124, 227, 57, 130, 155, 47, 255, 135, 52, 142, 67, 68, 196, 222, 233, 203,
|
|
67 84, 123, 148, 50, 166, 194, 35, 61, 238, 76, 149, 11, 66, 250, 195, 78,
|
|
68 8, 46, 161, 102, 40, 217, 36, 178, 118, 91, 162, 73, 109, 139, 209, 37,
|
|
69 114, 248, 246, 100, 134, 104, 152, 22, 212, 164, 92, 204, 93, 101, 182, 146,
|
|
70 108, 112, 72, 80, 253, 237, 185, 218, 94, 21, 70, 87, 167, 141, 157, 132,
|
|
71 144, 216, 171, 0, 140, 188, 211, 10, 247, 228, 88, 5, 184, 179, 69, 6,
|
|
72 208, 44, 30, 143, 202, 63, 15, 2, 193, 175, 189, 3, 1, 19, 138, 107,
|
|
73 58, 145, 17, 65, 79, 103, 220, 234, 151, 242, 207, 206, 240, 180, 230, 115,
|
|
74 150, 172, 116, 34, 231, 173, 53, 133, 226, 249, 55, 232, 28, 117, 223, 110,
|
|
75 71, 241, 26, 113, 29, 41, 197, 137, 111, 183, 98, 14, 170, 24, 190, 27,
|
|
76 252, 86, 62, 75, 198, 210, 121, 32, 154, 219, 192, 254, 120, 205, 90, 244,
|
|
77 31, 221, 168, 51, 136, 7, 199, 49, 177, 18, 16, 89, 39, 128, 236, 95,
|
|
78 96, 81, 127, 169, 25, 181, 74, 13, 45, 229, 122, 159, 147, 201, 156, 239,
|
|
79 160, 224, 59, 77, 174, 42, 245, 176, 200, 235, 187, 60, 131, 83, 153, 97,
|
|
80 23, 43, 4, 126, 186, 119, 214, 38, 225, 105, 20, 99, 85, 33, 12, 125
|
|
81 };
|
|
82 #define XORBLOCK(a, rk) \
|
|
83 ((uint64_t *)(a))[0] ^= ((uint64_t *)(rk))[0];\
|
|
84 ((uint64_t *)(a))[1] ^= ((uint64_t *)(rk))[1];
|
|
85 #define COPYBLOCK(b, a) \
|
|
86 ((uint64_t *)(b))[0] = ((uint64_t *)(a))[0];\
|
|
87 ((uint64_t *)(b))[1] = ((uint64_t *)(a))[1];
|
|
88 #define SUBSTSHIFTROWS(b, a) \
|
|
89 b[0] = invsubst[a[0]]; b[1] = invsubst[a[13]]; b[2] = invsubst[a[10]];\
|
|
90 b[3] = invsubst[a[7]]; b[4] = invsubst[a[4]]; b[5] = invsubst[a[1]];\
|
|
91 b[6] = invsubst[a[14]]; b[7] = invsubst[a[11]]; b[8] = invsubst[a[8]];\
|
|
92 b[9] = invsubst[a[5]]; b[10] = invsubst[a[2]]; b[11] = invsubst[a[15]];\
|
|
93 b[12] = invsubst[a[12]]; b[13] = invsubst[a[9]]; b[14] = invsubst[a[6]];\
|
|
94 b[15] = invsubst[a[3]];
|
|
95 #define INVMIX(b, a) \
|
|
96 ((uint32_t *)(b))[0] = c->multbl[0][a[0]] ^ c->multbl[1][a[1]] ^ c->multbl[2][a[2]] ^ c->multbl[3][a[3]];\
|
|
97 ((uint32_t *)(b))[1] = c->multbl[0][a[4]] ^ c->multbl[1][a[5]] ^ c->multbl[2][a[6]] ^ c->multbl[3][a[7]];\
|
|
98 ((uint32_t *)(b))[2] = c->multbl[0][a[8]] ^ c->multbl[1][a[9]] ^ c->multbl[2][a[10]] ^ c->multbl[3][a[11]];\
|
|
99 ((uint32_t *)(b))[3] = c->multbl[0][a[12]] ^ c->multbl[1][a[13]] ^ c->multbl[2][a[14]] ^ c->multbl[3][a[15]];
|
|
100
|
|
101 #define MUL(a, b) ((a && b) ? invlogtbl[(logtbl[a] + logtbl[b])%255] : 0)
|
|
102 AES128Context *aes128_init(void) {
|
|
103 AES128Context *c = av_mallocz(sizeof(*c));
|
|
104 uint8_t *invlogtbl = av_malloc(256);
|
|
105 uint8_t *tbl0, *tbl1, *tbl2, *tbl3;
|
|
106 int i;
|
|
107 for (i = 0; i < 256; i++) {
|
|
108 c->subst[invsubst[i]] = i;
|
|
109 invlogtbl[logtbl[i]] = i;
|
|
110 }
|
|
111 invlogtbl[255] = 1;
|
|
112 tbl0 = (uint8_t *)c->multbl[0];
|
|
113 tbl1 = (uint8_t *)c->multbl[1];
|
|
114 tbl2 = (uint8_t *)c->multbl[2];;
|
|
115 tbl3 = (uint8_t *)c->multbl[3];
|
|
116 for (i = 0; i < 256; i++) {
|
|
117 tbl0[4*i+0] = MUL(0xe, i); tbl0[4*i+1] = MUL(0x9, i);
|
|
118 tbl0[4*i+2] = MUL(0xd, i); tbl0[4*i+3] = MUL(0xb, i);
|
|
119 tbl1[4*i+0] = MUL(0xb, i); tbl1[4*i+1] = MUL(0xe, i);
|
|
120 tbl1[4*i+2] = MUL(0x9, i); tbl1[4*i+3] = MUL(0xd, i);
|
|
121 tbl2[4*i+0] = MUL(0xd, i); tbl2[4*i+1] = MUL(0xb, i);
|
|
122 tbl2[4*i+2] = MUL(0xe, i); tbl2[4*i+3] = MUL(0x9, i);
|
|
123 tbl3[4*i+0] = MUL(0x9, i); tbl3[4*i+1] = MUL(0xd, i);
|
|
124 tbl3[4*i+2] = MUL(0xb, i); tbl3[4*i+3] = MUL(0xe, i);
|
|
125 }
|
|
126 av_free(invlogtbl);
|
|
127 return c;
|
|
128 }
|
|
129
|
|
130 void aes128_set_key(AES128Context *c, const uint8_t *key) {
|
|
131 uint8_t tmp[4][4];
|
|
132 long r, i, j;
|
|
133 memcpy(tmp, key, 16);
|
|
134 memcpy(c->key[0], tmp, 16);
|
|
135 for (r = 1; r < 11; r++) {
|
|
136 for (i = 0; i < 4; i++) tmp[0][i] ^= c->subst[tmp[3][(i+1)&3]];
|
|
137 tmp[0][0] ^= rcon[r - 1];
|
|
138 for (i = 0; i < 4; i++) for(j = 1; j < 4; j++) tmp[j][i] ^= tmp[j-1][i];
|
|
139 memcpy(c->key[r], tmp, 16);
|
|
140 }
|
|
141 }
|
|
142
|
|
143 static void aes128_decrypt_block(AES128Context *c, uint8_t *block) {
|
|
144 long r = 8;
|
|
145 uint8_t tmp[16];
|
|
146 XORBLOCK(block, c->key[10]);
|
|
147 SUBSTSHIFTROWS(tmp, block);
|
|
148 XORBLOCK(tmp, c->key[9]);
|
|
149 INVMIX(tmp, tmp);
|
|
150 SUBSTSHIFTROWS(block, tmp);
|
|
151 do {
|
|
152 XORBLOCK(block, c->key[r]);
|
|
153 INVMIX(tmp, block);
|
|
154 SUBSTSHIFTROWS(block, tmp);
|
|
155 } while (--r);
|
|
156 XORBLOCK(block, c->key[0]);
|
|
157 }
|
|
158
|
|
159 void aes128_cbc_decrypt(AES128Context *c, uint8_t *mem, int blockcnt, uint8_t *IV) {
|
|
160 uint8_t tmp[16];
|
|
161 if (blockcnt & 1) {
|
|
162 COPYBLOCK(tmp, mem);
|
|
163 aes128_decrypt_block(c, mem);
|
|
164 XORBLOCK(mem, IV);
|
|
165 COPYBLOCK(IV, tmp);
|
|
166 mem += 16;
|
|
167 }
|
|
168 blockcnt >>= 1;
|
|
169 while (blockcnt-- > 0) {
|
|
170 COPYBLOCK(tmp, mem);
|
|
171 aes128_decrypt_block(c, mem);
|
|
172 XORBLOCK(mem, IV);
|
|
173 mem += 16;
|
|
174 COPYBLOCK(IV, mem);
|
|
175 aes128_decrypt_block(c, mem);
|
|
176 XORBLOCK(mem, tmp);
|
|
177 mem += 16;
|
|
178 }
|
|
179 }
|
|
180 #endif
|