summaryrefslogtreecommitdiff
path: root/whrlpool.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2015-07-19 13:33:41 -0400
committerJeffrey Walton <noloader@gmail.com>2015-07-19 13:33:41 -0400
commit11eb9957d4b70d9d164cb526ae91479f6e19e679 (patch)
treece1da73d4d833093f2b87ebf1dadc71e83700b68 /whrlpool.cpp
parentea9081ebc47f3ed636d6c510196a8da20b199ee4 (diff)
downloadcryptopp-git-11eb9957d4b70d9d164cb526ae91479f6e19e679.tar.gz
HasISSE -> HasSSE. That's how old this function is...
Diffstat (limited to 'whrlpool.cpp')
-rw-r--r--whrlpool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/whrlpool.cpp b/whrlpool.cpp
index 9da12e3d..6de6747f 100644
--- a/whrlpool.cpp
+++ b/whrlpool.cpp
@@ -392,7 +392,7 @@ static const word64 Whirlpool_C[4*256+R] = {
void Whirlpool::Transform(word64 *digest, const word64 *block)
{
#if CRYPTOPP_BOOL_SSE2_ASM_AVAILABLE
- if (HasISSE())
+ if (HasSSE())
{
// MMX version has the same structure as C version below
#ifdef __GNUC__