diff options
author | Spp <spp@jorge.gr> | 2013-03-25 13:26:48 +0100 |
---|---|---|
committer | Spp <spp@jorge.gr> | 2013-03-25 13:26:48 +0100 |
commit | 1a6a23ec96c7646d2753198f93eaba62d2732a83 (patch) | |
tree | 2ef7e8ffd5201bd6e7bf0a4ddfd768a24e263e82 /src/server/shared/Cryptography/HMACSHA1.cpp | |
parent | 7c36e3a298ce243631848b94364c185a863d1526 (diff) |
Core/Misc: Minor optimizations (+code changes to reduce differences with 4.3.4 branch)
Core/Logging: Create new logger type "Cheat". Will be used to log all cheat attempts
Diffstat (limited to 'src/server/shared/Cryptography/HMACSHA1.cpp')
-rw-r--r-- | src/server/shared/Cryptography/HMACSHA1.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/shared/Cryptography/HMACSHA1.cpp b/src/server/shared/Cryptography/HMACSHA1.cpp index ab50eb9981a..297b4e90316 100644 --- a/src/server/shared/Cryptography/HMACSHA1.cpp +++ b/src/server/shared/Cryptography/HMACSHA1.cpp @@ -40,7 +40,7 @@ void HmacHash::Finalize() { uint32 length = 0; HMAC_Final(&m_ctx, (uint8*)m_digest, &length); - ASSERT(length == SHA_DIGEST_LENGTH) + ASSERT(length == SHA_DIGEST_LENGTH); } uint8 *HmacHash::ComputeHash(BigNumber* bn) |