diff options
Diffstat (limited to 'src/lib/block/serpent/serpent.cpp')
-rw-r--r-- | src/lib/block/serpent/serpent.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/block/serpent/serpent.cpp b/src/lib/block/serpent/serpent.cpp index ac95a8706..d9001d19f 100644 --- a/src/lib/block/serpent/serpent.cpp +++ b/src/lib/block/serpent/serpent.cpp @@ -135,7 +135,7 @@ void Serpent::decrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const verify_key_set(m_round_key.empty() == false); #if defined(BOTAN_HAS_SERPENT_AVX2) - if(CPUID::has_avx2() && false) + if(CPUID::has_avx2()) { while(blocks >= 8) { |