diff options
author | Jeffrey Walton <noloader@gmail.com> | 2022-08-06 18:57:26 -0400 |
---|---|---|
committer | Jeffrey Walton <noloader@gmail.com> | 2022-08-06 18:57:26 -0400 |
commit | d3b09590319b0fc5502269b89a3d2b49cc0ac526 (patch) | |
tree | 8ad8ec7525e50981c85c66983bc9d7c5629319a3 | |
parent | eafd19bf7fafe06531775d9ae4298d2f9251b4ab (diff) | |
download | cryptopp-git-d3b09590319b0fc5502269b89a3d2b49cc0ac526.tar.gz |
Update comments
-rw-r--r-- | validat9.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/validat9.cpp b/validat9.cpp index 6f11c6bd..1dca6ebe 100644 --- a/validat9.cpp +++ b/validat9.cpp @@ -652,12 +652,12 @@ 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, ECGDSA with RIPEMD message digests. The
- // problem is present with CRYPTOPP_DISABLE_ASM present. 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. This is likely a compiler bug.
+ // '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.
+ // This is likely a compiler bug.
#if CRYPTOPP_GCC_VERSION >= 120000
thorough = false;
#endif
|