Update aes.h

This commit is contained in:
kokke 2017-12-06 02:23:32 +01:00 committed by GitHub
parent 8526d39536
commit 79458d2162
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

3
aes.h
View File

@ -41,7 +41,8 @@
#define AES_keyExpSize 176
#endif
struct AES_ctx {
struct AES_ctx
{
uint8_t RoundKey[AES_keyExpSize];
#if (defined(CBC) && (CBC == 1)) || (defined(CTR) && (CTR == 1))
uint8_t Iv[AES_BLOCKLEN];