diff options
author | lloyd <[email protected]> | 2008-11-17 06:45:56 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-11-17 06:45:56 +0000 |
commit | 108685e00f315783fec580a1db81067bc17e3379 (patch) | |
tree | 38cdae96b5b246443ef62f95554e0a896a0ea929 /src/block/aes/aes.h | |
parent | 26f35fc5d648393b6d0c3ac914893b65c0f26bec (diff) |
Optimize AES decryption in the same manner as the last changes to AES encryption.
Diffstat (limited to 'src/block/aes/aes.h')
-rw-r--r-- | src/block/aes/aes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/block/aes/aes.h b/src/block/aes/aes.h index bceae7494..c7361f6e8 100644 --- a/src/block/aes/aes.h +++ b/src/block/aes/aes.h @@ -37,8 +37,8 @@ class BOTAN_DLL AES : public BlockCipher SecureBuffer<u32bit, 56> EK; SecureBuffer<byte, 16> ME; - SecureBuffer<u32bit, 52> DK; - SecureBuffer<byte, 32> MD; + SecureBuffer<u32bit, 56> DK; + SecureBuffer<byte, 16> MD; }; /** |