summaryrefslogtreecommitdiff
path: root/rijndael.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-11-22 17:55:20 -0500
committerJeffrey Walton <noloader@gmail.com>2017-11-22 17:55:20 -0500
commit561926db34652617c4f894979cb3946aa19bdc54 (patch)
tree76860e2c18dfb72edf67c9c6ee48549e205efaf4 /rijndael.cpp
parentf5784c1634a346ed6afbaaef51ce2c30507f61b5 (diff)
downloadcryptopp-git-561926db34652617c4f894979cb3946aa19bdc54.tar.gz
Rename CRYPTOPP_ENABLE_ADVANCED_PROCESS_BLOCKS for Rijndael
Diffstat (limited to 'rijndael.cpp')
-rw-r--r--rijndael.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/rijndael.cpp b/rijndael.cpp
index df551109..55bf6510 100644
--- a/rijndael.cpp
+++ b/rijndael.cpp
@@ -1126,7 +1126,7 @@ void Rijndael_Enc_AdvancedProcessBlocks(void *locals, const word32 *k);
}
#endif
-#if CRYPTOPP_ENABLE_ADVANCED_PROCESS_BLOCKS
+#if CRYPTOPP_RIJNDAEL_ADVANCED_PROCESS_BLOCKS
size_t Rijndael::Enc::AdvancedProcessBlocks(const byte *inBlocks, const byte *xorBlocks, byte *outBlocks, size_t length, word32 flags) const
{
#if CRYPTOPP_AESNI_AVAILABLE
@@ -1212,7 +1212,7 @@ size_t Rijndael::Dec::AdvancedProcessBlocks(const byte *inBlocks, const byte *xo
return BlockTransformation::AdvancedProcessBlocks(inBlocks, xorBlocks, outBlocks, length, flags);
}
-#endif // CRYPTOPP_ENABLE_ADVANCED_PROCESS_BLOCKS
+#endif // CRYPTOPP_RIJNDAEL_ADVANCED_PROCESS_BLOCKS
NAMESPACE_END