diff options
| author | Spp <spp@jorge.gr> | 2011-10-18 14:59:23 +0200 |
|---|---|---|
| committer | Spp <spp@jorge.gr> | 2011-10-18 14:59:23 +0200 |
| commit | e3f8588a227cbf9108f396131a199d75868bf539 (patch) | |
| tree | 7af85d79ae50f08a965cd5f601542ea6959519ed /src/server/shared/Cryptography/Authentication | |
| parent | b5e8a192b121b8ec297885e04566758c236d9191 (diff) | |
Minor changes here and there:
- Cosmetic changes
- 'Engrish fix'
- Initialization of some vars
- Remove some not needed includes
Diffstat (limited to 'src/server/shared/Cryptography/Authentication')
| -rwxr-xr-x | src/server/shared/Cryptography/Authentication/AuthCrypt.cpp | 3 | ||||
| -rwxr-xr-x | src/server/shared/Cryptography/Authentication/AuthCrypt.h | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/server/shared/Cryptography/Authentication/AuthCrypt.cpp b/src/server/shared/Cryptography/Authentication/AuthCrypt.cpp index 146f4e992b7..a2db02dfbe3 100755 --- a/src/server/shared/Cryptography/Authentication/AuthCrypt.cpp +++ b/src/server/shared/Cryptography/Authentication/AuthCrypt.cpp @@ -18,12 +18,11 @@ #include "AuthCrypt.h" #include "Cryptography/HMACSHA1.h" -#include "Logging/Log.h" #include "Cryptography/BigNumber.h" AuthCrypt::AuthCrypt() : _clientDecrypt(SHA_DIGEST_LENGTH), _serverEncrypt(SHA_DIGEST_LENGTH) + , _initialized(false) { - _initialized = false; } AuthCrypt::~AuthCrypt() diff --git a/src/server/shared/Cryptography/Authentication/AuthCrypt.h b/src/server/shared/Cryptography/Authentication/AuthCrypt.h index 0304ef6b69e..e7463b0d962 100755 --- a/src/server/shared/Cryptography/Authentication/AuthCrypt.h +++ b/src/server/shared/Cryptography/Authentication/AuthCrypt.h @@ -19,7 +19,6 @@ #ifndef _AUTHCRYPT_H #define _AUTHCRYPT_H -#include <Common.h> #include "Cryptography/ARC4.h" class BigNumber; |
