summaryrefslogtreecommitdiff
path: root/gf2_32.cpp
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2007-04-16 00:21:07 +0000
committerweidai <weidai11@users.noreply.github.com>2007-04-16 00:21:07 +0000
commit5cad605559f973f2ce7d5ede1e6b67151f8e1d51 (patch)
tree6cc6caeba741b13cbc0cf5498d1c957f97451bf3 /gf2_32.cpp
parent199c7960213d94682913e72de0e3f6d04f575a8b (diff)
downloadcryptopp-git-5cad605559f973f2ce7d5ede1e6b67151f8e1d51.tar.gz
optimizations
Diffstat (limited to 'gf2_32.cpp')
-rw-r--r--gf2_32.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gf2_32.cpp b/gf2_32.cpp
index fd2661b5..ae4874a4 100644
--- a/gf2_32.cpp
+++ b/gf2_32.cpp
@@ -22,7 +22,7 @@ GF2_32::Element GF2_32::Multiply(Element a, Element b) const
table[3] = m_modulus ^ (a<<1);
}
-#ifdef FAST_ROTATE
+#if CRYPTOPP_FAST_ROTATE(32)
b = rotrFixed(b, 30U);
word32 result = table[b&2];