OSDN Git Service

Pass subshift an argument of the proper type.
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>
Mon, 28 Jun 2010 17:19:55 +0000 (17:19 +0000)
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>
Mon, 28 Jun 2010 17:19:55 +0000 (17:19 +0000)
No changes in generated code.

Originally committed as revision 23856 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavutil/aes.c

index e21599a..da4ecbb 100644 (file)
@@ -177,7 +177,7 @@ int av_aes_init(AVAES *a, const uint8_t *key, int key_bits, int decrypt) {
         for(i=1; i<rounds; i++){
             uint8_t tmp[3][16];
             memcpy(tmp[2], a->round_key[i][0], 16);
-            subshift(tmp[1], 0, sbox);
+            subshift(&tmp[1], 0, sbox);
             mix(tmp, dec_multbl, 1, 3);
             memcpy(a->round_key[i][0], tmp[0], 16);
         }