summaryrefslogtreecommitdiffstats
path: root/crypto/rijndael/rijndael.h
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2001-02-07 18:15:18 +0000
committerDr. Stephen Henson <steve@openssl.org>2001-02-07 18:15:18 +0000
commitdeb2c1a1c58fb738b3216b663212572170de8183 (patch)
treef6aa0527d08b8fdcf4ce63eaf85aa3d6a73b1c34 /crypto/rijndael/rijndael.h
parentd4219c485b34818df8aa530f7d8d1c1daff44306 (diff)
Fix AES code.
Update Rijndael source to v3.0 Add AES OIDs. Change most references of Rijndael to AES. Add new draft AES ciphersuites.
Diffstat (limited to 'crypto/rijndael/rijndael.h')
-rw-r--r--crypto/rijndael/rijndael.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/crypto/rijndael/rijndael.h b/crypto/rijndael/rijndael.h
index 8287ca67c1..72edcc2942 100644
--- a/crypto/rijndael/rijndael.h
+++ b/crypto/rijndael/rijndael.h
@@ -1,11 +1,7 @@
#include "openssl/rd_fst.h"
-#define RIJNDAEL_MAX_IV 16
-
typedef struct
{
- word8 keySched[RIJNDAEL_MAXROUNDS+1][4][4];
+ u32 rd_key[4 *(MAXNR + 1)];
int rounds;
- word8 iv[RIJNDAEL_MAX_IV];
- int enc;
} RIJNDAEL_KEY;