summaryrefslogtreecommitdiff
path: root/panama.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-10-18 02:23:07 -0400
committerJeffrey Walton <noloader@gmail.com>2016-10-18 02:23:07 -0400
commite794d538064574d1824b3064964a2da3d8049f2d (patch)
treee75941abf4522c163543a46cec21f9cdd23f8bab /panama.cpp
parent51d3cc945fe388c776a1a20683ba8ff1c2f191e2 (diff)
downloadcryptopp-git-e794d538064574d1824b3064964a2da3d8049f2d.tar.gz
Cleanup comments
Diffstat (limited to 'panama.cpp')
-rw-r--r--panama.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/panama.cpp b/panama.cpp
index 32615c65..bd4ae802 100644
--- a/panama.cpp
+++ b/panama.cpp
@@ -500,7 +500,6 @@ template <class B>
void PanamaCipherPolicy<B>::OperateKeystream(KeystreamOperation operation, byte *output, const byte *input, size_t iterationCount)
{
#if (CRYPTOPP_BOOL_SSE2_ASM_AVAILABLE || defined(CRYPTOPP_X64_MASM_AVAILABLE)) && !defined(CRYPTOPP_DISABLE_PANAMA_ASM)
- // No need for alignment CRYPTOPP_ASSERT. Panama_SSE2_Pull is ASM, and its not bound by C alignment requirements.
if (B::ToEnum() == LITTLE_ENDIAN_ORDER && HasSSE2())
Panama_SSE2_Pull(iterationCount, this->m_state, (word32 *)(void *)output, (const word32 *)(void *)input);
else