From 3cb4e7c716b11f357b3265257c51e7b6cc5c36f9 Mon Sep 17 00:00:00 2001 From: megamage Date: Wed, 24 Dec 2008 09:58:26 -0600 Subject: *Update to Mangos 6938. (Only build for VC9) --HG-- branch : trunk --- src/shared/Auth/AuthCrypt.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/shared/Auth/AuthCrypt.cpp') diff --git a/src/shared/Auth/AuthCrypt.cpp b/src/shared/Auth/AuthCrypt.cpp index 7941b33ed8c..199e7192537 100644 --- a/src/shared/Auth/AuthCrypt.cpp +++ b/src/shared/Auth/AuthCrypt.cpp @@ -50,9 +50,8 @@ void AuthCrypt::DecryptRecv(uint8 *data, size_t len) void AuthCrypt::EncryptSend(uint8 *data, size_t len) { if (!_initialized) return; - if (len < CRYPTED_SEND_LEN) return; - for (size_t t = 0; t < CRYPTED_SEND_LEN; t++) + for (size_t t = 0; t < len; t++) { _send_i %= _key.size(); uint8 x = (data[t] ^ _key[_send_i]) + _send_j; -- cgit v1.2.3