summaryrefslogtreecommitdiff
path: root/rijndael.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-10-27 01:01:01 -0400
committerJeffrey Walton <noloader@gmail.com>2016-10-27 01:01:01 -0400
commit733a073d65548848aabc39a45b5addb0e01b68fe (patch)
treef25fda5ad23fa0618d0ce81eea32707243471662 /rijndael.h
parentac01277d93636cd7cb9163555e2d929c39849371 (diff)
downloadcryptopp-git-733a073d65548848aabc39a45b5addb0e01b68fe.tar.gz
Fix mismatched arch capabilities (Issue 283)
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 5b334ffc..bdcf3ed3 100644
--- a/rijndael.h
+++ b/rijndael.h
@@ -69,7 +69,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_AESNI_INTRINSICS_AVAILABLE
+#if CRYPTOPP_BOOL_X64 || CRYPTOPP_BOOL_X32 || CRYPTOPP_BOOL_X86
size_t AdvancedProcessBlocks(const byte *inBlocks, const byte *xorBlocks, byte *outBlocks, size_t length, word32 flags) const;
#endif
};