summaryrefslogtreecommitdiff
path: root/cham.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-11-29 18:43:16 -0500
committerJeffrey Walton <noloader@gmail.com>2020-11-29 18:43:16 -0500
commit6f1aa13d22897330a0a53e1ff5fcade12c82d042 (patch)
treea86a8738bf3410a094b323edd1cd01568d6be272 /cham.cpp
parent7177df3068b65c2c09da340c0ae4ddb4b1049a5f (diff)
downloadcryptopp-git-6f1aa13d22897330a0a53e1ff5fcade12c82d042.tar.gz
Fix CHAM64 AlgorithmProvider
We removed the template based SIMD code for 64-bit algorithms due to incorrect results for CFB and OFB modes
Diffstat (limited to 'cham.cpp')
-rw-r--r--cham.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/cham.cpp b/cham.cpp
index 1a05721d..d3866919 100644
--- a/cham.cpp
+++ b/cham.cpp
@@ -114,12 +114,6 @@ extern size_t CHAM128_Dec_AdvancedProcessBlocks_SSSE3(const word32* subKeys, siz
std::string CHAM64::Base::AlgorithmProvider() const
{
-#if (CRYPTOPP_CHAM128_ADVANCED_PROCESS_BLOCKS)
-# if defined(CRYPTOPP_SSSE3_AVAILABLE)
- if (HasSSSE3())
- return "SSSE3";
-# endif
-#endif
return "C++";
}