summaryrefslogtreecommitdiff
path: root/crypto/rijndael/rijndael.h
blob: 34741a83b9f84ea1c94a939e741ddfdc3c85c289 (plain)
1
2
3
4
5
6
7
8
9
10
11
#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;