summaryrefslogtreecommitdiff
path: root/rijndael.h
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2009-03-12 11:24:12 +0000
committerweidai <weidai11@users.noreply.github.com>2009-03-12 11:24:12 +0000
commit2779fc60506e2042ab1569ffad4061f1187d186c (patch)
tree68edc0bccf003f5615716b3ae2d6b97067af39c4 /rijndael.h
parent64af4560dc8ba66ef0e2ac3b05dec6f445ec96fe (diff)
downloadcryptopp-git-2779fc60506e2042ab1569ffad4061f1187d186c.tar.gz
- add EAX mode, XSalsa20
- speed up GCM key setup - wipe stack in AES assembly code - speed up CFB mode
Diffstat (limited to 'rijndael.h')
-rw-r--r--rijndael.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/rijndael.h b/rijndael.h
index e34f6c9e..483b8dda 100644
--- a/rijndael.h
+++ b/rijndael.h
@@ -34,7 +34,7 @@ class CRYPTOPP_DLL Rijndael : public Rijndael_Info, public BlockCipherDocumentat
static const word32 rcon[];
unsigned int m_rounds;
- SecBlock<word32, AllocatorWithCleanup<word32, CRYPTOPP_BOOL_X86> > m_key;
+ FixedSizeAlignedSecBlock<word32, 4*15> m_key;
};
class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE Enc : public Base