From 0340821cc614fda2a94a96c255d16105dd2f6f9a Mon Sep 17 00:00:00 2001 From: boris Date: Sat, 29 Dec 2018 22:15:34 +1300 Subject: tcp is being autistic -_- --- csgo-loader/csgo-server/Security/Encryption.cpp | 8 -------- 1 file changed, 8 deletions(-) (limited to 'csgo-loader/csgo-server/Security') diff --git a/csgo-loader/csgo-server/Security/Encryption.cpp b/csgo-loader/csgo-server/Security/Encryption.cpp index dc6ef84..b79a1c3 100644 --- a/csgo-loader/csgo-server/Security/Encryption.cpp +++ b/csgo-loader/csgo-server/Security/Encryption.cpp @@ -614,11 +614,7 @@ namespace Wrapper // Encrypt outgoing data. ByteArray Encrypted; - #ifdef DEBUG - Encrypted = Data; - #else Aes256::encrypt(m_EncryptionKey, Data, Encrypted); - #endif return Encrypted; } @@ -628,11 +624,7 @@ namespace Wrapper // Decrypt incoming data. ByteArray Decrypted; - #ifdef DEBUG - Decrypted = Data; - #else Aes256::decrypt(m_EncryptionKey, Data, Decrypted); - #endif return Decrypted; } -- cgit v1.2.3