fix for Unix
parent
e769c2eeac
commit
8cd6a9256d
2
test.cpp
2
test.cpp
|
|
@ -428,7 +428,7 @@ void DigestFile(const char *filename)
|
||||||
void HmacFile(const char *hexKey, const char *file)
|
void HmacFile(const char *hexKey, const char *file)
|
||||||
{
|
{
|
||||||
member_ptr<MessageAuthenticationCode> mac;
|
member_ptr<MessageAuthenticationCode> mac;
|
||||||
if (stricmp(hexKey, "selftest") == 0)
|
if (strcmp(hexKey, "selftest") == 0)
|
||||||
{
|
{
|
||||||
cerr << "Computing HMAC/SHA1 value for self test.\n";
|
cerr << "Computing HMAC/SHA1 value for self test.\n";
|
||||||
mac.reset(NewIntegrityCheckingMAC());
|
mac.reset(NewIntegrityCheckingMAC());
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue