summaryrefslogtreecommitdiff
path: root/sosemanuk.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-09-16 11:27:15 -0400
committerJeffrey Walton <noloader@gmail.com>2016-09-16 11:27:15 -0400
commit399a1546de71f41598c15edada28e7f0d616f541 (patch)
tree530160789358a3303be180df2d8529c82782156b /sosemanuk.cpp
parentfca5fbb36169a7522e6c533df9c322d47e3dc6bb (diff)
downloadcryptopp-git-399a1546de71f41598c15edada28e7f0d616f541.tar.gz
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
Diffstat (limited to 'sosemanuk.cpp')
-rw-r--r--sosemanuk.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sosemanuk.cpp b/sosemanuk.cpp
index 2fba4371..366fe358 100644
--- a/sosemanuk.cpp
+++ b/sosemanuk.cpp
@@ -28,7 +28,7 @@ void SosemanukPolicy::CipherSetKey(const NameValuePairs &params, const byte *use
void SosemanukPolicy::CipherResynchronize(byte *keystreamBuffer, const byte *iv, size_t length)
{
CRYPTOPP_UNUSED(keystreamBuffer), CRYPTOPP_UNUSED(iv), CRYPTOPP_UNUSED(length);
- assert(length==16);
+ CRYPTOPP_ASSERT(length==16);
word32 a, b, c, d, e;