From 399a1546de71f41598c15edada28e7f0d616f541 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Fri, 16 Sep 2016 11:27:15 -0400 Subject: Add CRYPTOPP_ASSERT (Issue 277, CVE-2016-7420) trap.h and CRYPTOPP_ASSERT has existed for over a year in Master. We deferred on the cut-over waiting for a minor version bump (5.7). We have to use it now due to CVE-2016-7420 --- sha3.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sha3.cpp') diff --git a/sha3.cpp b/sha3.cpp index 4e383479..435cbd56 100644 --- a/sha3.cpp +++ b/sha3.cpp @@ -251,7 +251,7 @@ static void KeccakF1600(word64 *state) void SHA3::Update(const byte *input, size_t length) { - assert((input && length) || !(input || length)); + CRYPTOPP_ASSERT((input && length) || !(input || length)); if (!length) return; -- cgit v1.2.1