aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/aes/aes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/aes/aes.h')
-rw-r--r--src/block/aes/aes.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/block/aes/aes.h b/src/block/aes/aes.h
index 9b84e572c..bceae7494 100644
--- a/src/block/aes/aes.h
+++ b/src/block/aes/aes.h
@@ -31,9 +31,14 @@ class BOTAN_DLL AES : public BlockCipher
static const byte SD[256];
static const u32bit TE[1024];
static const u32bit TD[1024];
- SecureBuffer<u32bit, 52> EK, DK;
- SecureBuffer<byte, 32> ME, MD;
+
u32bit ROUNDS;
+
+ SecureBuffer<u32bit, 56> EK;
+ SecureBuffer<byte, 16> ME;
+
+ SecureBuffer<u32bit, 52> DK;
+ SecureBuffer<byte, 32> MD;
};
/**