summaryrefslogtreecommitdiff
path: root/lib/crypto
diff options
context:
space:
mode:
Diffstat (limited to 'lib/crypto')
-rw-r--r--lib/crypto/CipherContext.cpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/lib/crypto/CipherContext.cpp b/lib/crypto/CipherContext.cpp
index d68c4b5d..8c3b25b2 100644
--- a/lib/crypto/CipherContext.cpp
+++ b/lib/crypto/CipherContext.cpp
@@ -166,8 +166,7 @@ void CipherContext::Begin()
// Warn if in a transformation (not an error, because a context might not have been finalised if an exception occured)
if(mWithinTransform)
{
- BOX_WARNING("CipherContext::Begin called when context "
- "flagged as within a transform");
+ TRACE0("CipherContext::Begin called when context flagged as within a transform\n");
}
// Initialise the cipher context again
@@ -424,8 +423,7 @@ int CipherContext::TransformBlock(void *pOutBuffer, int OutLength, const void *p
// Warn if in a transformation
if(mWithinTransform)
{
- BOX_WARNING("CipherContext::TransformBlock called when "
- "context flagged as within a transform");
+ TRACE0("CipherContext::TransformBlock called when context flagged as within a transform\n");
}
// Check output buffer size
@@ -523,8 +521,7 @@ void CipherContext::SetIV(const void *pIV)
// Warn if in a transformation
if(mWithinTransform)
{
- BOX_WARNING("CipherContext::SetIV called when context "
- "flagged as within a transform");
+ TRACE0("CipherContext::SetIV called when context flagged as within a transform\n");
}
// Set IV
@@ -562,8 +559,7 @@ const void *CipherContext::SetRandomIV(int &rLengthOut)
// Warn if in a transformation
if(mWithinTransform)
{
- BOX_WARNING("CipherContext::SetRandomIV called when "
- "context flagged as within a transform");
+ TRACE0("CipherContext::SetRandomIV called when context flagged as within a transform\n");
}
// Get length of IV