You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

265 lines
8.0KB

  1. /*
  2. * copyright (c) 2007 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * some optimization ideas from aes128.c by Reimar Doeffinger
  5. *
  6. * This file is part of Libav.
  7. *
  8. * Libav is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * Libav is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with Libav; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include "common.h"
  23. #include "intreadwrite.h"
  24. #include "timer.h"
  25. #include "aes.h"
  26. typedef union {
  27. uint64_t u64[2];
  28. uint32_t u32[4];
  29. uint8_t u8x4[4][4];
  30. uint8_t u8[16];
  31. } av_aes_block;
  32. typedef struct AVAES {
  33. // Note: round_key[16] is accessed in the init code, but this only
  34. // overwrites state, which does not matter (see also commit ba554c0).
  35. av_aes_block round_key[15];
  36. av_aes_block state[2];
  37. int rounds;
  38. } AVAES;
  39. struct AVAES *av_aes_alloc(void)
  40. {
  41. return av_mallocz(sizeof(struct AVAES));
  42. }
  43. static const uint8_t rcon[10] = {
  44. 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36
  45. };
  46. static uint8_t sbox[256];
  47. static uint8_t inv_sbox[256];
  48. #if CONFIG_SMALL
  49. static uint32_t enc_multbl[1][256];
  50. static uint32_t dec_multbl[1][256];
  51. #else
  52. static uint32_t enc_multbl[4][256];
  53. static uint32_t dec_multbl[4][256];
  54. #endif
  55. #if HAVE_BIGENDIAN
  56. # define ROT(x, s) ((x >> s) | (x << (32-s)))
  57. #else
  58. # define ROT(x, s) ((x << s) | (x >> (32-s)))
  59. #endif
  60. static inline void addkey(av_aes_block *dst, const av_aes_block *src,
  61. const av_aes_block *round_key)
  62. {
  63. dst->u64[0] = src->u64[0] ^ round_key->u64[0];
  64. dst->u64[1] = src->u64[1] ^ round_key->u64[1];
  65. }
  66. static inline void addkey_s(av_aes_block *dst, const uint8_t *src,
  67. const av_aes_block *round_key)
  68. {
  69. dst->u64[0] = AV_RN64(src) ^ round_key->u64[0];
  70. dst->u64[1] = AV_RN64(src + 8) ^ round_key->u64[1];
  71. }
  72. static inline void addkey_d(uint8_t *dst, const av_aes_block *src,
  73. const av_aes_block *round_key)
  74. {
  75. AV_WN64(dst, src->u64[0] ^ round_key->u64[0]);
  76. AV_WN64(dst + 8, src->u64[1] ^ round_key->u64[1]);
  77. }
  78. static void subshift(av_aes_block s0[2], int s, const uint8_t *box)
  79. {
  80. av_aes_block *s1 = (av_aes_block *) (s0[0].u8 - s);
  81. av_aes_block *s3 = (av_aes_block *) (s0[0].u8 + s);
  82. s0[0].u8[ 0] = box[s0[1].u8[ 0]];
  83. s0[0].u8[ 4] = box[s0[1].u8[ 4]];
  84. s0[0].u8[ 8] = box[s0[1].u8[ 8]];
  85. s0[0].u8[12] = box[s0[1].u8[12]];
  86. s1[0].u8[ 3] = box[s1[1].u8[ 7]];
  87. s1[0].u8[ 7] = box[s1[1].u8[11]];
  88. s1[0].u8[11] = box[s1[1].u8[15]];
  89. s1[0].u8[15] = box[s1[1].u8[ 3]];
  90. s0[0].u8[ 2] = box[s0[1].u8[10]];
  91. s0[0].u8[10] = box[s0[1].u8[ 2]];
  92. s0[0].u8[ 6] = box[s0[1].u8[14]];
  93. s0[0].u8[14] = box[s0[1].u8[ 6]];
  94. s3[0].u8[ 1] = box[s3[1].u8[13]];
  95. s3[0].u8[13] = box[s3[1].u8[ 9]];
  96. s3[0].u8[ 9] = box[s3[1].u8[ 5]];
  97. s3[0].u8[ 5] = box[s3[1].u8[ 1]];
  98. }
  99. static inline int mix_core(uint32_t multbl[][256], int a, int b, int c, int d)
  100. {
  101. #if CONFIG_SMALL
  102. return multbl[0][a] ^ ROT(multbl[0][b], 8) ^ ROT(multbl[0][c], 16) ^ ROT(multbl[0][d], 24);
  103. #else
  104. return multbl[0][a] ^ multbl[1][b] ^ multbl[2][c] ^ multbl[3][d];
  105. #endif
  106. }
  107. static inline void mix(av_aes_block state[2], uint32_t multbl[][256], int s1, int s3)
  108. {
  109. uint8_t (*src)[4] = state[1].u8x4;
  110. state[0].u32[0] = mix_core(multbl, src[0][0], src[s1 ][1], src[2][2], src[s3 ][3]);
  111. state[0].u32[1] = mix_core(multbl, src[1][0], src[s3 - 1][1], src[3][2], src[s1 - 1][3]);
  112. state[0].u32[2] = mix_core(multbl, src[2][0], src[s3 ][1], src[0][2], src[s1 ][3]);
  113. state[0].u32[3] = mix_core(multbl, src[3][0], src[s1 - 1][1], src[1][2], src[s3 - 1][3]);
  114. }
  115. static inline void crypt(AVAES *a, int s, const uint8_t *sbox,
  116. uint32_t multbl[][256])
  117. {
  118. int r;
  119. for (r = a->rounds - 1; r > 0; r--) {
  120. mix(a->state, multbl, 3 - s, 1 + s);
  121. addkey(&a->state[1], &a->state[0], &a->round_key[r]);
  122. }
  123. subshift(&a->state[0], s, sbox);
  124. }
  125. void av_aes_crypt(AVAES *a, uint8_t *dst, const uint8_t *src,
  126. int count, uint8_t *iv, int decrypt)
  127. {
  128. while (count--) {
  129. addkey_s(&a->state[1], src, &a->round_key[a->rounds]);
  130. if (decrypt) {
  131. crypt(a, 0, inv_sbox, dec_multbl);
  132. if (iv) {
  133. addkey_s(&a->state[0], iv, &a->state[0]);
  134. memcpy(iv, src, 16);
  135. }
  136. addkey_d(dst, &a->state[0], &a->round_key[0]);
  137. } else {
  138. if (iv)
  139. addkey_s(&a->state[1], iv, &a->state[1]);
  140. crypt(a, 2, sbox, enc_multbl);
  141. addkey_d(dst, &a->state[0], &a->round_key[0]);
  142. if (iv)
  143. memcpy(iv, dst, 16);
  144. }
  145. src += 16;
  146. dst += 16;
  147. }
  148. }
  149. static void init_multbl2(uint32_t tbl[][256], const int c[4],
  150. const uint8_t *log8, const uint8_t *alog8,
  151. const uint8_t *sbox)
  152. {
  153. int i;
  154. for (i = 0; i < 256; i++) {
  155. int x = sbox[i];
  156. if (x) {
  157. int k, l, m, n;
  158. x = log8[x];
  159. k = alog8[x + log8[c[0]]];
  160. l = alog8[x + log8[c[1]]];
  161. m = alog8[x + log8[c[2]]];
  162. n = alog8[x + log8[c[3]]];
  163. tbl[0][i] = AV_NE(MKBETAG(k, l, m, n), MKTAG(k, l, m, n));
  164. #if !CONFIG_SMALL
  165. tbl[1][i] = ROT(tbl[0][i], 8);
  166. tbl[2][i] = ROT(tbl[0][i], 16);
  167. tbl[3][i] = ROT(tbl[0][i], 24);
  168. #endif
  169. }
  170. }
  171. }
  172. // this is based on the reference AES code by Paulo Barreto and Vincent Rijmen
  173. int av_aes_init(AVAES *a, const uint8_t *key, int key_bits, int decrypt)
  174. {
  175. int i, j, t, rconpointer = 0;
  176. uint8_t tk[8][4];
  177. int KC = key_bits >> 5;
  178. int rounds = KC + 6;
  179. uint8_t log8[256];
  180. uint8_t alog8[512];
  181. if (!enc_multbl[FF_ARRAY_ELEMS(enc_multbl) - 1][FF_ARRAY_ELEMS(enc_multbl[0]) - 1]) {
  182. j = 1;
  183. for (i = 0; i < 255; i++) {
  184. alog8[i] = alog8[i + 255] = j;
  185. log8[j] = i;
  186. j ^= j + j;
  187. if (j > 255)
  188. j ^= 0x11B;
  189. }
  190. for (i = 0; i < 256; i++) {
  191. j = i ? alog8[255 - log8[i]] : 0;
  192. j ^= (j << 1) ^ (j << 2) ^ (j << 3) ^ (j << 4);
  193. j = (j ^ (j >> 8) ^ 99) & 255;
  194. inv_sbox[j] = i;
  195. sbox[i] = j;
  196. }
  197. init_multbl2(dec_multbl, (const int[4]) { 0xe, 0x9, 0xd, 0xb },
  198. log8, alog8, inv_sbox);
  199. init_multbl2(enc_multbl, (const int[4]) { 0x2, 0x1, 0x1, 0x3 },
  200. log8, alog8, sbox);
  201. }
  202. if (key_bits != 128 && key_bits != 192 && key_bits != 256)
  203. return -1;
  204. a->rounds = rounds;
  205. memcpy(tk, key, KC * 4);
  206. memcpy(a->round_key[0].u8, key, KC * 4);
  207. for (t = KC * 4; t < (rounds + 1) * 16; t += KC * 4) {
  208. for (i = 0; i < 4; i++)
  209. tk[0][i] ^= sbox[tk[KC - 1][(i + 1) & 3]];
  210. tk[0][0] ^= rcon[rconpointer++];
  211. for (j = 1; j < KC; j++) {
  212. if (KC != 8 || j != KC >> 1)
  213. for (i = 0; i < 4; i++)
  214. tk[j][i] ^= tk[j - 1][i];
  215. else
  216. for (i = 0; i < 4; i++)
  217. tk[j][i] ^= sbox[tk[j - 1][i]];
  218. }
  219. memcpy(a->round_key[0].u8 + t, tk, KC * 4);
  220. }
  221. if (decrypt) {
  222. for (i = 1; i < rounds; i++) {
  223. av_aes_block tmp[3];
  224. tmp[2] = a->round_key[i];
  225. subshift(&tmp[1], 0, sbox);
  226. mix(tmp, dec_multbl, 1, 3);
  227. a->round_key[i] = tmp[0];
  228. }
  229. } else {
  230. for (i = 0; i < (rounds + 1) >> 1; i++)
  231. FFSWAP(av_aes_block, a->round_key[i], a->round_key[rounds - i]);
  232. }
  233. return 0;
  234. }