diff options
author | lloyd <[email protected]> | 2009-11-10 20:14:41 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-11-10 20:14:41 +0000 |
commit | 7a3ee74d35ebef79b0ae38f798a85eaf7f452abc (patch) | |
tree | 0f38e9cfb9d74176b032765b7365b54bf9fef583 /src/block/aes_intel/aes_intel.h | |
parent | 1a4210926dd857eff1a862806b8c05bda919981e (diff) |
Remove SSE4 dependency in AES-192 key schedule, and also avoid requiring
an extra 4 words at the end of EK for writing (unused) values.
Diffstat (limited to 'src/block/aes_intel/aes_intel.h')
-rw-r--r-- | src/block/aes_intel/aes_intel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/block/aes_intel/aes_intel.h b/src/block/aes_intel/aes_intel.h index 373e95b9e..164655072 100644 --- a/src/block/aes_intel/aes_intel.h +++ b/src/block/aes_intel/aes_intel.h @@ -49,7 +49,7 @@ class BOTAN_DLL AES_192_Intel : public BlockCipher private: void key_schedule(const byte[], u32bit); - SecureBuffer<u32bit, 56> EK, DK; + SecureBuffer<u32bit, 52> EK, DK; }; /** |