aboutsummaryrefslogtreecommitdiff
path: root/src/shared/Auth/AuthCrypt.h
diff options
context:
space:
mode:
authormegamage <none@none>2009-06-11 00:45:59 -0500
committermegamage <none@none>2009-06-11 00:45:59 -0500
commit9d670fe6f5757430d575081db9a6e5273400330d (patch)
tree9148b75f310fda0bf082be70731abfca03e84f20 /src/shared/Auth/AuthCrypt.h
parent9c70e3d89bbace30bfabcf8c42323472ad1e4c4d (diff)
*Switch to support client version 3.1.3
*I strongly recommend you not to use this until you get the 313 db. Now all destructible buildings cause client crash. Source: Mangos Thanks to TOM_RUS for most work to make this switch possible ;) --HG-- branch : trunk
Diffstat (limited to 'src/shared/Auth/AuthCrypt.h')
-rw-r--r--src/shared/Auth/AuthCrypt.h15
1 files changed, 4 insertions, 11 deletions
diff --git a/src/shared/Auth/AuthCrypt.h b/src/shared/Auth/AuthCrypt.h
index 5c35511ad9f..226fde018ae 100644
--- a/src/shared/Auth/AuthCrypt.h
+++ b/src/shared/Auth/AuthCrypt.h
@@ -22,7 +22,7 @@
#define _AUTHCRYPT_H
#include <Common.h>
-#include <vector>
+#include "SARC4.h"
class BigNumber;
@@ -32,22 +32,15 @@ class AuthCrypt
AuthCrypt();
~AuthCrypt();
- const static size_t CRYPTED_RECV_LEN = 6;
-
- void Init();
-
- void SetKey(BigNumber *);
-
+ void Init(BigNumber *K);
void DecryptRecv(uint8 *, size_t);
void EncryptSend(uint8 *, size_t);
bool IsInitialized() { return _initialized; }
- static void GenerateKey(uint8 *, BigNumber *);
-
private:
- std::vector<uint8> _key;
- uint8 _send_i, _send_j, _recv_i, _recv_j;
+ SARC4 _clientDecrypt;
+ SARC4 _serverEncrypt;
bool _initialized;
};
#endif