summaryrefslogtreecommitdiff
path: root/blake2s_simd.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-04-06 21:16:49 -0400
committerJeffrey Walton <noloader@gmail.com>2020-04-06 21:16:49 -0400
commite65d10dad1ae2d3fff3566cfc2749611125354e5 (patch)
treeb116b3fe139817fff9e84344a57456ad09b159de /blake2s_simd.cpp
parent8416d3985ba46fd9026f6894e98a30ac75ae35cc (diff)
downloadcryptopp-git-e65d10dad1ae2d3fff3566cfc2749611125354e5.tar.gz
Remove unneeded PPC64 BLAKE2_Compress32_CORE
Diffstat (limited to 'blake2s_simd.cpp')
-rw-r--r--blake2s_simd.cpp11
1 files changed, 1 insertions, 10 deletions
diff --git a/blake2s_simd.cpp b/blake2s_simd.cpp
index 12387bf2..d130f6f7 100644
--- a/blake2s_simd.cpp
+++ b/blake2s_simd.cpp
@@ -872,7 +872,7 @@ uint32x4_p VectorSet32<3,1,3,1>(const uint32x4_p a, const uint32x4_p b,
return VecPermute(a, c, mask);
}
-void BLAKE2_Compress32_CORE(const byte* input, BLAKE2s_State& state)
+void BLAKE2_Compress32_ALTIVEC(const byte* input, BLAKE2s_State& state)
{
# define m1 m0
# define m2 m0
@@ -1021,13 +1021,4 @@ void BLAKE2_Compress32_CORE(const byte* input, BLAKE2s_State& state)
}
#endif // CRYPTOPP_ALTIVEC_AVAILABLE
-#if (CRYPTOPP_ALTIVEC_AVAILABLE)
-
-void BLAKE2_Compress32_ALTIVEC(const byte* input, BLAKE2s_State& state)
-{
- BLAKE2_Compress32_CORE(input, state);
-}
-
-#endif
-
NAMESPACE_END