diff --git a/dll.cpp b/dll.cpp index bb44ea78..26a658a4 100644 --- a/dll.cpp +++ b/dll.cpp @@ -131,7 +131,7 @@ static void SetNewAndDeleteFunctionPointers() return; } - OutputDebugString("Crypto++ was not able to obtain new and delete function pointers.\n"); + OutputDebugString("Crypto++ DLL was not able to obtain new and delete function pointers.\n"); throw 0; } 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())));