Commit 08d2a76f authored by michael's avatar michael

simplify round_key generation by writing over the end but ensuring that theres...

simplify round_key generation by writing over the end but ensuring that theres some irrelevant stuff afterwards


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7471 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 61401f58
......@@ -23,8 +23,8 @@
#include "aes.h"
typedef struct AVAES{
uint8_t state[4][4];
uint8_t round_key[15][4][4];
uint8_t state[4][4];
int rounds;
}AVAES;
......@@ -143,9 +143,9 @@ AVAES *av_aes_init(uint8_t *key, int key_bits) {
memcpy(tk, key, KC*4);
for(t= 0; t < (rounds+1)*4; ) {
for(j = 0; j < KC && t < (rounds+1)*4; j++, t++)
memcpy(a->round_key[0][t], tk[j], 4);
for(t= 0; t < (rounds+1)*4;) {
memcpy(a->round_key[0][t], tk, KC*4);
t+= KC;
for(i = 0; i < 4; i++)
tk[0][i] ^= sbox[tk[KC-1][(i+1)&3]];
......
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