Skip to content
Snippets Groups Projects
Commit 7acc1a27 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

memcpy

Originally committed as revision 7469 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 1070eba2
No related branches found
No related tags found
No related merge requests found
...@@ -146,8 +146,7 @@ AVAES *av_aes_init(uint8_t *key, int key_bits) { ...@@ -146,8 +146,7 @@ AVAES *av_aes_init(uint8_t *key, int key_bits) {
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++)
for(i = 0; i < 4; i++) memcpy(a->round_key[0][t], tk[j], 4);
a->round_key[0][t][i] = tk[j][i];
for(i = 0; i < 4; i++) for(i = 0; i < 4; i++)
tk[0][i] ^= sbox[tk[KC-1][(i+1)&3]]; tk[0][i] ^= sbox[tk[KC-1][(i+1)&3]];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment