From 1f5d0d85cf40e840ebac88de70db5e508564648d Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sat, 18 Aug 2018 21:41:55 -0400 Subject: Add Tiger cipher AlgorithmProvider() --- sosemanuk.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'sosemanuk.cpp') diff --git a/sosemanuk.cpp b/sosemanuk.cpp index 52a02d9b..82cf8c92 100644 --- a/sosemanuk.cpp +++ b/sosemanuk.cpp @@ -21,9 +21,11 @@ NAMESPACE_BEGIN(CryptoPP) std::string SosemanukPolicy::AlgorithmProvider() const { -#if CRYPTOPP_SSE2_ASM_AVAILABLE +#ifndef CRYPTOPP_DISABLE_SOSEMANUK_ASM +# if CRYPTOPP_SSE2_ASM_AVAILABLE if (HasSSE2()) return "SSE2"; +# endif #endif return "C++"; } -- cgit v1.2.1