summaryrefslogtreecommitdiff
path: root/blake2.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-04-05 21:41:34 -0400
committerJeffrey Walton <noloader@gmail.com>2020-04-05 21:41:34 -0400
commite4ccdb90c0ec3fa694581c8fab1b4232aa795567 (patch)
tree14586a2a7b74f6e5c9c449ecd962e27861b4e167 /blake2.cpp
parent40bebb2473c073a2bd11aa81442050dab05f1be4 (diff)
downloadcryptopp-git-e4ccdb90c0ec3fa694581c8fab1b4232aa795567.tar.gz
Use Altivec as minimum ISA for Blake2s
Diffstat (limited to 'blake2.cpp')
-rw-r--r--blake2.cpp29
1 files changed, 5 insertions, 24 deletions
diff --git a/blake2.cpp b/blake2.cpp
index c0664ad8..a0ae8238 100644
--- a/blake2.cpp
+++ b/blake2.cpp
@@ -4,9 +4,9 @@
// implementation at http://github.com/BLAKE2/BLAKE2.
//
// The BLAKE2b and BLAKE2s numbers are consistent with the BLAKE2 team's
-// numbers. However, we have an Altivec/POWER7 implementation of BLAKE2s,
+// numbers. However, we have an Altivec implementation of BLAKE2s,
// and a POWER8 implementation of BLAKE2b (BLAKE2 team is missing them).
-// Altivec/POWER7 code is about 2x faster than C++ when using GCC 5.0 or
+// Altivec code is about 2x faster than C++ when using GCC 5.0 or
// above. The POWER8 code is about 2.5x faster than C++ when using GCC 5.0
// or above. If you use GCC 4.0 (PowerMac) or GCC 4.8 (GCC Compile Farm)
// then the PowerPC code will be slower than C++. Be sure to use GCC 5.0
@@ -181,12 +181,6 @@ extern void BLAKE2_Compress32_NEON(const byte* input, BLAKE2s_State& state);
extern void BLAKE2_Compress64_NEON(const byte* input, BLAKE2b_State& state);
#endif
-#if CRYPTOPP_POWER7_AVAILABLE
-extern void BLAKE2_Compress32_POWER7(const byte* input, BLAKE2s_State& state);
-#elif CRYPTOPP_ALTIVEC_AVAILABLE
-extern void BLAKE2_Compress32_ALTIVEC(const byte* input, BLAKE2s_State& state);
-#endif
-
#if CRYPTOPP_POWER8_AVAILABLE
extern void BLAKE2_Compress64_POWER8(const byte* input, BLAKE2b_State& state);
#endif
@@ -243,11 +237,7 @@ unsigned int BLAKE2s::OptimalDataAlignment() const
return 4;
else
#endif
-#if (CRYPTOPP_POWER7_AVAILABLE)
- if (HasPower7())
- return 4;
- else
-#elif (CRYPTOPP_ALTIVEC_AVAILABLE)
+#if (CRYPTOPP_ALTIVEC_AVAILABLE)
if (HasAltivec())
return 16;
else
@@ -267,11 +257,7 @@ std::string BLAKE2s::AlgorithmProvider() const
return "NEON";
else
#endif
-#if (CRYPTOPP_POWER7_AVAILABLE)
- if (HasPower7())
- return "Power7";
- else
-#elif (CRYPTOPP_ALTIVEC_AVAILABLE)
+#if (CRYPTOPP_ALTIVEC_AVAILABLE)
if (HasAltivec())
return "Altivec";
else
@@ -696,12 +682,7 @@ void BLAKE2s::Compress(const byte *input)
return BLAKE2_Compress32_NEON(input, m_state);
}
#endif
-#if CRYPTOPP_POWER7_AVAILABLE
- if(HasPower7())
- {
- return BLAKE2_Compress32_POWER7(input, m_state);
- }
-#elif CRYPTOPP_ALTIVEC_AVAILABLE
+#if CRYPTOPP_ALTIVEC_AVAILABLE
if(HasAltivec())
{
return BLAKE2_Compress32_ALTIVEC(input, m_state);