summaryrefslogtreecommitdiff
path: root/validat9.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2022-08-07 10:48:37 -0400
committerJeffrey Walton <noloader@gmail.com>2022-08-07 10:48:37 -0400
commit02f4361d4780830e3e5a56430e77e9514e3817dc (patch)
treef0ec0f11eb2c2cfc4408931f5190ad595d8adfd6 /validat9.cpp
parentd3b09590319b0fc5502269b89a3d2b49cc0ac526 (diff)
downloadcryptopp-git-02f4361d4780830e3e5a56430e77e9514e3817dc.tar.gz
Update comments
Diffstat (limited to 'validat9.cpp')
-rw-r--r--validat9.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/validat9.cpp b/validat9.cpp
index 1dca6ebe..23530ccc 100644
--- a/validat9.cpp
+++ b/validat9.cpp
@@ -652,11 +652,11 @@ bool ValidateECGDSA(bool thorough)
{
std::cout << "\nECGDSA validation suite running...\n\n";
- // 'thorough' forced to false due to GH #1134. There is something
- // sideways with GCC 12 and ECGDSA+RIPEMD. The problem is present
- // with CRYPTOPP_DISABLE_ASM. However, Asan, UBsan and Valgrind
- // fail to produce a finding. The program simply crashes with a
- // junk backtrace. And GCC 11 (and earlier), Clang, MSVC are Ok.
+ // 'thorough' forced to false due to GH #1134. There is something sideways
+ // with GCC 12 and ECGDSA+RIPEMD. The problem is present with
+ // CRYPTOPP_DISABLE_ASM, which indicates a C++ problem. However, Asan,
+ // UBsan and Valgrind fail to produce a finding. The program simply crashes
+ // with a junk backtrace. And GCC 11 (and earlier), Clang, MSVC, xlC are Ok.
// This is likely a compiler bug.
#if CRYPTOPP_GCC_VERSION >= 120000
thorough = false;