summaryrefslogtreecommitdiff
path: root/rijndael.h
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2009-04-05 19:58:48 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2009-04-05 19:58:48 +0000
commit78249d5ff4e87d2751c7f51e960d360124ed073a (patch)
treec9166df4f9ca8a1f7e608a26fcc5c68d07acf872 /rijndael.h
parentfbba0d7c2165347cbab96bd5111c1732fb9f395b (diff)
downloadcryptopp-78249d5ff4e87d2751c7f51e960d360124ed073a.tar.gz
fix compile on MacOS X and MinGW
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@463 57ff6487-cd31-0410-9ec3-f628ee90f5f0
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 483b8dd..d602186 100644
--- a/rijndael.h
+++ b/rijndael.h
@@ -41,7 +41,7 @@ class CRYPTOPP_DLL Rijndael : public Rijndael_Info, public BlockCipherDocumentat
{
public:
void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
-#if CRYPTOPP_BOOL_SSE2_ASM_AVAILABLE || defined(CRYPTOPP_X64_MASM_AVAILABLE)
+#if CRYPTOPP_BOOL_X64 || CRYPTOPP_BOOL_X86
size_t AdvancedProcessBlocks(const byte *inBlocks, const byte *xorBlocks, byte *outBlocks, size_t length, word32 flags) const;
#endif
};