Commit 438bf0db authored by reimar's avatar reimar

Document aes init code writing on purpose beyond round_key array into state array.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9734 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent cc3b32db
......@@ -24,6 +24,8 @@
#include "aes.h"
typedef struct AVAES{
// Note: round_key[16] is accessed in the init code, but this only
// overwrites state, which does not matter (see also r7471).
uint8_t round_key[15][4][4];
uint8_t state[2][4][4];
int rounds;
......
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