diff options
author | madmaxoft <github@xoft.cz> | 2014-01-23 23:35:23 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-01-23 23:35:23 +0100 |
commit | 5f34c78091a7c884a9c27c0f0691cd1f03174dfe (patch) | |
tree | 0162e472332c09c3841bd46656ae8b2ec7f87b0e /src/Protocol/Protocol17x.h | |
parent | Fixed a bug in LeakFinder. (diff) | |
download | cuberite-5f34c78091a7c884a9c27c0f0691cd1f03174dfe.tar cuberite-5f34c78091a7c884a9c27c0f0691cd1f03174dfe.tar.gz cuberite-5f34c78091a7c884a9c27c0f0691cd1f03174dfe.tar.bz2 cuberite-5f34c78091a7c884a9c27c0f0691cd1f03174dfe.tar.lz cuberite-5f34c78091a7c884a9c27c0f0691cd1f03174dfe.tar.xz cuberite-5f34c78091a7c884a9c27c0f0691cd1f03174dfe.tar.zst cuberite-5f34c78091a7c884a9c27c0f0691cd1f03174dfe.zip |
Diffstat (limited to 'src/Protocol/Protocol17x.h')
-rw-r--r-- | src/Protocol/Protocol17x.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/Protocol/Protocol17x.h b/src/Protocol/Protocol17x.h index 3f440f313..0617b6c00 100644 --- a/src/Protocol/Protocol17x.h +++ b/src/Protocol/Protocol17x.h @@ -26,21 +26,20 @@ Declares the 1.7.x protocol classes: #pragma warning(disable:4702) #endif -#include "cryptopp/modes.h" -#include "cryptopp/aes.h" - #ifdef _MSC_VER #pragma warning(pop) #endif +#include "../Crypto.h" + class cProtocol172 : - public cProtocol // TODO + public cProtocol { - typedef cProtocol super; // TODO + typedef cProtocol super; public: @@ -220,9 +219,9 @@ protected: cByteBuffer m_OutPacketLenBuffer; bool m_IsEncrypted; - CryptoPP::CFB_Mode<CryptoPP::AES>::Decryption m_Decryptor; - CryptoPP::CFB_Mode<CryptoPP::AES>::Encryption m_Encryptor; + cAESCFBDecryptor m_Decryptor; + cAESCFBEncryptor m_Encryptor; /// Adds the received (unencrypted) data to m_ReceivedData, parses complete packets void AddReceivedData(const char * a_Data, int a_Size); |