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.

173 lines
5.1KB

  1. /*
  2. * copyright (c) 2007 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include "common.h"
  21. #include "log.h"
  22. #include "aes.h"
  23. typedef struct AVAES{
  24. uint8_t state[4][4];
  25. uint8_t round_key[15][4][4];
  26. int rounds;
  27. }AVAES;
  28. static const uint8_t rcon[30] = {
  29. 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80,
  30. 0x1b, 0x36, 0x6c, 0xd8, 0xab, 0x4d, 0x9a, 0x2f,
  31. 0x5e, 0xbc, 0x63, 0xc6, 0x97, 0x35, 0x6a, 0xd4,
  32. 0xb3, 0x7d, 0xfa, 0xef, 0xc5, 0x91
  33. };
  34. static uint8_t log8[256];
  35. static uint8_t alog8[512];
  36. static uint8_t sbox[256];
  37. static uint8_t inv_sbox[256];
  38. static inline void addkey(uint32_t state[4], uint32_t round_key[4]){
  39. int i;
  40. for(i=0; i<4; i++)
  41. state[i] ^= round_key[i]; //partial memory stall? FIXME benchmark
  42. }
  43. #define SUBSHIFT0(s, box) s[0]=box[s[ 0]]; s[ 4]=box[s[ 4]]; s[ 8]=box[s[ 8]]; s[12]=box[s[12]];
  44. #define SUBSHIFT1(s, box) t=s[0]; s[0]=box[s[ 4]]; s[ 4]=box[s[ 8]]; s[ 8]=box[s[12]]; s[12]=box[t];
  45. #define SUBSHIFT2(s, box) t=s[0]; s[0]=box[s[ 8]]; s[ 8]=box[ t]; t=s[ 4]; s[ 4]=box[s[12]]; s[12]=box[t];
  46. #define SUBSHIFT3(s, box) t=s[0]; s[0]=box[s[12]]; s[12]=box[s[ 8]]; s[ 8]=box[s[ 4]]; s[ 4]=box[t];
  47. static inline int mul(int a, int b){
  48. if(a==255) return 0;
  49. else return alog8[a+b];
  50. }
  51. static inline void mix(uint8_t state[4][4], int c0, int c1, int c2, int c3){
  52. uint8_t tmp[4][4];
  53. int i, j;
  54. for(i=0; i<16; i++)
  55. tmp[0][i]= log8[ state[0][i] ];
  56. for(j=0; j<4; j++)
  57. for(i=0; i<4; i++)
  58. state[j][i]= mul( tmp[j][ i ], c0 )
  59. ^mul( tmp[j][(i+ 1)&3], c1 )
  60. ^mul( tmp[j][(i+ 2)&3], c2 )
  61. ^mul( tmp[j][(i+ 3)&3], c3 );
  62. }
  63. void av_aes_decrypt(AVAES *a){
  64. int t, r;
  65. for(r=a->rounds-1; r>=0; r--){
  66. if(r==a->rounds-1)
  67. addkey(a->state, a->round_key[r+1]);
  68. else
  69. mix(a->state, log8[0xe], log8[0xb], log8[0xd], log8[9]); //FIXME replace log8 by const
  70. SUBSHIFT0((a->state[0]+0), inv_sbox)
  71. SUBSHIFT3((a->state[0]+1), inv_sbox)
  72. SUBSHIFT2((a->state[0]+2), inv_sbox)
  73. SUBSHIFT1((a->state[0]+3), inv_sbox)
  74. addkey(a->state, a->round_key[r]);
  75. }
  76. }
  77. void av_aes_encrypt(AVAES *a){
  78. int r, t;
  79. for(r=0; r<a->rounds; r++){
  80. addkey(a->state, a->round_key[r]);
  81. SUBSHIFT0((a->state[0]+0), sbox)
  82. SUBSHIFT1((a->state[0]+1), sbox)
  83. SUBSHIFT2((a->state[0]+2), sbox)
  84. SUBSHIFT3((a->state[0]+3), sbox)
  85. if(r==a->rounds-1)
  86. addkey(a->state, a->round_key[r+1]);
  87. else
  88. mix(a->state, log8[2], log8[3], 0, 0); //FIXME replace log8 by const / optimze mix as this can be simplified alot
  89. }
  90. }
  91. // this is based on the reference AES code by Paulo Barreto and Vincent Rijmen
  92. AVAES *av_aes_init(uint8_t *key, int keyBits) {
  93. AVAES *a= av_malloc(sizeof(AVAES));
  94. int i, j, t, rconpointer = 0;
  95. uint8_t tk[8][4];
  96. int KC= keyBits/32;
  97. int ROUNDS= KC + 6;
  98. if(!sbox[255]){
  99. j=1;
  100. for(i=0; i<255; i++){
  101. alog8[i]=
  102. alog8[i+255]= j;
  103. log8[j]= i;
  104. j^= j+j;
  105. if(j>255) j^= 0x11B;
  106. }
  107. log8[0]= 255;
  108. for(i=0; i<256; i++){
  109. j= i ? alog8[255-log8[i]] : 0;
  110. j ^= (j<<1) ^ (j<<2) ^ (j<<3) ^ (j<<4)
  111. ^(j>>7) ^ (j>>6) ^ (j>>5) ^ (j>>4) ^ 99;
  112. j&=255;
  113. inv_sbox[j]= i;
  114. sbox [i]= j;
  115. // av_log(NULL, AV_LOG_ERROR, "%d, ", log8[i]);
  116. }
  117. }
  118. a->rounds= ROUNDS;
  119. if(keyBits!=128 && keyBits!=192 && keyBits!=256)
  120. return NULL;
  121. memcpy(tk, key, KC*4);
  122. for(t= 0; t < (ROUNDS+1)*4; ) {
  123. for(j = 0; (j < KC) && (t < (ROUNDS+1)*4); j++, t++)
  124. for(i = 0; i < 4; i++)
  125. a->round_key[0][t][i] = tk[j][i];
  126. for(i = 0; i < 4; i++)
  127. tk[0][i] ^= sbox[tk[KC-1][(i+1)&3]];
  128. tk[0][0] ^= rcon[rconpointer++];
  129. for(j = 1; j < KC; j++){
  130. if(KC != 8 || j != KC/2)
  131. for(i = 0; i < 4; i++) tk[j][i] ^= tk[j-1][i];
  132. else
  133. for(i = 0; i < 4; i++)
  134. tk[KC/2][i] ^= sbox[tk[KC/2 - 1][i]];
  135. }
  136. }
  137. return a;
  138. }
  139. #ifdef TEST
  140. int main(){
  141. int i,j,k;
  142. AVAES *a= av_aes_init("PI=3.141592654..", 128);
  143. for(i=0; i<10000; i++){
  144. }
  145. return 0;
  146. }
  147. #endif