summaryrefslogtreecommitdiff
path: root/authenc.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2015-11-05 01:59:46 -0500
committerJeffrey Walton <noloader@gmail.com>2015-11-05 01:59:46 -0500
commit48809d4e85c125814425c621d8d0d89f95405924 (patch)
tree1010fd16c4b1199f3d27dd726dda241a2bd29f83 /authenc.cpp
parent025337a94aceb75d188149db70c2094673772816 (diff)
downloadcryptopp-git-48809d4e85c125814425c621d8d0d89f95405924.tar.gz
CRYPTOPP 5.6.3 RC6 checkin
Diffstat (limited to 'authenc.cpp')
-rw-r--r--authenc.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/authenc.cpp b/authenc.cpp
index cc518404..0ca5da60 100644
--- a/authenc.cpp
+++ b/authenc.cpp
@@ -5,7 +5,6 @@
#ifndef CRYPTOPP_IMPORTS
#include "authenc.h"
-#include "trap.h"
NAMESPACE_BEGIN(CryptoPP)
@@ -98,7 +97,7 @@ void AuthenticatedSymmetricCipherBase::Update(const byte *input, size_t length)
m_totalFooterLength += length;
break;
default:
- CRYPTOPP_ASSERT(false);
+ assert(false);
}
}
@@ -130,7 +129,7 @@ reswitch:
AuthenticateData(outString, length);
break;
default:
- CRYPTOPP_ASSERT(false);
+ assert(false);
}
}
@@ -170,7 +169,7 @@ void AuthenticatedSymmetricCipherBase::TruncatedFinal(byte *mac, size_t macSize)
break;
default:
- CRYPTOPP_ASSERT(false);
+ assert(false);
}
m_state = State_KeySet;