summaryrefslogtreecommitdiff
path: root/whrlpool.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-08-17 12:33:43 -0400
committerGitHub <noreply@github.com>2017-08-17 12:33:43 -0400
commite2c377effd9a4eca0291c217e9c3256b033511dc (patch)
treea33fa7d52e14b923a034bafb9a05172a983a0e7c /whrlpool.cpp
parent74d21068a16c2b3e879336ae7eed180d4466e8b5 (diff)
downloadcryptopp-git-e2c377effd9a4eca0291c217e9c3256b033511dc.tar.gz
Split source files to support Base Implementation + SIMD implementation (GH #461)
Split source files to support Base Implementation + SIMD implementation
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 1278ad8a..a947b813 100644
--- a/whrlpool.cpp
+++ b/whrlpool.cpp
@@ -409,7 +409,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 (HasSSE2())
{
// MMX version has the same structure as C version below
#ifdef __GNUC__