mirror of
https://github.com/openssl/openssl.git
synced 2024-12-22 08:23:48 +08:00
3ab5651112
make update done.
12 lines
209 B
C
12 lines
209 B
C
#include "rijndael-alg-fst.h"
|
|
|
|
#define RIJNDAEL_MAX_IV 16
|
|
|
|
typedef struct
|
|
{
|
|
word8 keySched[RIJNDAEL_MAXROUNDS+1][4][4];
|
|
int rounds;
|
|
word8 iv[RIJNDAEL_MAX_IV];
|
|
int enc;
|
|
} RIJNDAEL_KEY;
|