Commit 61401f58 authored by michael's avatar michael

cosmetics


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7470 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0b1fd4e3
...@@ -72,7 +72,6 @@ static inline void mix(uint8_t state[4][4], uint32_t multbl[4][256]){ ...@@ -72,7 +72,6 @@ static inline void mix(uint8_t state[4][4], uint32_t multbl[4][256]){
#endif #endif
} }
void av_aes_decrypt(AVAES *a){ void av_aes_decrypt(AVAES *a){
int t, r; int t, r;
...@@ -145,7 +144,7 @@ AVAES *av_aes_init(uint8_t *key, int key_bits) { ...@@ -145,7 +144,7 @@ AVAES *av_aes_init(uint8_t *key, int key_bits) {
memcpy(tk, key, KC*4); memcpy(tk, key, KC*4);
for(t= 0; t < (rounds+1)*4; ) { for(t= 0; t < (rounds+1)*4; ) {
for(j = 0; (j < KC) && (t < (rounds+1)*4); j++, t++) for(j = 0; j < KC && t < (rounds+1)*4; j++, t++)
memcpy(a->round_key[0][t], tk[j], 4); memcpy(a->round_key[0][t], tk[j], 4);
for(i = 0; i < 4; i++) for(i = 0; i < 4; i++)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment