diff options
| author | Brian <runningnak3d@gmail.com> | 2010-06-07 07:43:20 -0600 |
|---|---|---|
| committer | Brian <runningnak3d@gmail.com> | 2010-06-07 07:43:20 -0600 |
| commit | 36584926e6684c0df19562e3a438f45ff38dee10 (patch) | |
| tree | 05c0a806452ff323151baec2434c5880366a5d76 /src/server/shared/Cryptography/Authentication | |
| parent | cbaf5587d62459df3ddd0a4312cb549649c30a4a (diff) | |
* Auth lib builds again.
--HG--
branch : trunk
Diffstat (limited to 'src/server/shared/Cryptography/Authentication')
| -rw-r--r-- | src/server/shared/Cryptography/Authentication/AuthCrypt.cpp | 6 | ||||
| -rw-r--r-- | src/server/shared/Cryptography/Authentication/AuthCrypt.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/server/shared/Cryptography/Authentication/AuthCrypt.cpp b/src/server/shared/Cryptography/Authentication/AuthCrypt.cpp index b34b922b16a..2dfcebfa932 100644 --- a/src/server/shared/Cryptography/Authentication/AuthCrypt.cpp +++ b/src/server/shared/Cryptography/Authentication/AuthCrypt.cpp @@ -19,9 +19,9 @@ */ #include "AuthCrypt.h" -#include "Hmac.h" -#include "Log.h" -#include "BigNumber.h" +#include "Cryptography/HMACSHA1.h" +#include "Logging/Log.h" +#include "Cryptography/BigNumber.h" AuthCrypt::AuthCrypt() : _clientDecrypt(SHA_DIGEST_LENGTH), _serverEncrypt(SHA_DIGEST_LENGTH) { diff --git a/src/server/shared/Cryptography/Authentication/AuthCrypt.h b/src/server/shared/Cryptography/Authentication/AuthCrypt.h index 6695dc580cc..5a2430611a4 100644 --- a/src/server/shared/Cryptography/Authentication/AuthCrypt.h +++ b/src/server/shared/Cryptography/Authentication/AuthCrypt.h @@ -22,7 +22,7 @@ #define _AUTHCRYPT_H #include <Common.h> -#include "SARC4.h" +#include "Cryptography/ARC4.h" class BigNumber; |
