summaryrefslogtreecommitdiff
path: root/rijndael.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-09-30 09:31:23 -0400
committerJeffrey Walton <noloader@gmail.com>2016-09-30 09:31:23 -0400
commit2b328e8f8bbcb96d28d6978e8e04a66715b49cde (patch)
tree57b64e4a76939f889f5bf3742a621713d0c0575f /rijndael.h
parent2efedfb5ab84f90f3b46f1a0b6937c25a1d816af (diff)
downloadcryptopp-git-2b328e8f8bbcb96d28d6978e8e04a66715b49cde.tar.gz
Fix AES and X86 compile on Solaris
Diffstat (limited to 'rijndael.h')
-rw-r--r--rijndael.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/rijndael.h b/rijndael.h
index a5c61994..5b334ffc 100644
--- a/rijndael.h
+++ b/rijndael.h
@@ -56,12 +56,9 @@ class CRYPTOPP_DLL Rijndael : public Rijndael_Info, public BlockCipherDocumentat
public:
void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
#if CRYPTOPP_BOOL_X64 || CRYPTOPP_BOOL_X32 || CRYPTOPP_BOOL_X86
- Enc() : m_aliasBlock(sizeToAllocate) {}
+ Enc();
size_t AdvancedProcessBlocks(const byte *inBlocks, const byte *xorBlocks, byte *outBlocks, size_t length, word32 flags) const;
private:
- static const size_t aliasPageSize;
- static const size_t aliasBlockSize;
- static const size_t sizeToAllocate;
SecByteBlock m_aliasBlock;
#endif
};