comparison aes.c @ 192:7787c6fb07e1 libavutil

unused think
author michael
date Sun, 14 Jan 2007 19:41:57 +0000
parents a2a3c80706e5
children b6d397f6be75
comparison
equal deleted inserted replaced
191:a2a3c80706e5 192:7787c6fb07e1
26 uint8_t round_key[15][4][4]; 26 uint8_t round_key[15][4][4];
27 uint8_t state[4][4]; 27 uint8_t state[4][4];
28 int rounds; 28 int rounds;
29 }AVAES; 29 }AVAES;
30 30
31 static const uint8_t rcon[11] = { 31 static const uint8_t rcon[10] = {
32 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36, 0x6c 32 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36
33 }; 33 };
34 34
35 static uint8_t sbox[256]; 35 static uint8_t sbox[256];
36 static uint8_t inv_sbox[256]; 36 static uint8_t inv_sbox[256];
37 #ifdef CONFIG_SMALL 37 #ifdef CONFIG_SMALL