summaryrefslogtreecommitdiff
path: root/strciphr.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2021-03-17 13:12:26 -0400
committerJeffrey Walton <noloader@gmail.com>2021-03-17 13:12:26 -0400
commit585397d172fea45fd7cc6adfa63c6dcd110499af (patch)
treebde6293c588b1c548ef784dcb59d0d73f3b477b4 /strciphr.cpp
parentc33a73a5eb679598b8bace18882edf3e233622bb (diff)
downloadcryptopp-git-585397d172fea45fd7cc6adfa63c6dcd110499af.tar.gz
Update comments
Diffstat (limited to 'strciphr.cpp')
-rw-r--r--strciphr.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/strciphr.cpp b/strciphr.cpp
index 2d2f0f60..fb8d94b9 100644
--- a/strciphr.cpp
+++ b/strciphr.cpp
@@ -4,8 +4,8 @@
// CFB_CipherTemplate<BASE>::ProcessData when we cut-in Cryptogams
// AES ARMv7 asm. Then again in AdditiveCipherTemplate<S>::ProcessData
// for CTR mode with HIGHT, which is a 64-bit block cipher. In both cases,
-// using 'outString' for both input and output leads to incorrect results.
-// We think it relates to aliasing violations because inString == outString.
+// inString == outString leads to incorrect results. We think it relates to
+// aliasing violations because inString == outString.
//
// Also see https://github.com/weidai11/cryptopp/issues/683 and
// https://github.com/weidai11/cryptopp/issues/1010.