summaryrefslogtreecommitdiff
path: root/fipstest.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-10-02 19:22:49 -0400
committerJeffrey Walton <noloader@gmail.com>2016-10-02 19:22:49 -0400
commit82b13e23cab9dfb83b52a7792eb4f7351773ddc8 (patch)
treebc1eec02487c3c72a9c355180a429f873581f57a /fipstest.cpp
parent2413c0e041352fef7c33a0da1b57a6c9c8395374 (diff)
downloadcryptopp-git-82b13e23cab9dfb83b52a7792eb4f7351773ddc8.tar.gz
Add "Crypto++ DLL" to OutputDebugString messages (Issue 314)
Visual Studio 2010 was opt-in; which Visual Studio 2012 is opt-out
Diffstat (limited to 'fipstest.cpp')
-rw-r--r--fipstest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/fipstest.cpp b/fipstest.cpp
index 44d3821b..1c770bf4 100644
--- a/fipstest.cpp
+++ b/fipstest.cpp
@@ -446,7 +446,7 @@ bool IntegrityCheckModule(const char *moduleFilename, const byte *expectedModule
// hash from disk instead
if (!VerifyBufsEqual(expectedModuleMac, actualMac, macSize))
{
- OutputDebugString("In memory integrity check failed. This may be caused by debug breakpoints or DLL relocation.\n");
+ OutputDebugString("Crypto++ DLL in-memory integrity check failed. This may be caused by debug breakpoints or DLL relocation.\n");
moduleStream.clear();
moduleStream.seekg(0);
verifier.Initialize(MakeParameters(Name::OutputBuffer(), ByteArrayParameter(actualMac, (unsigned int)actualMac.size())));