Fix compilation with wxWidgets 2.8.12
[amule.git] / src / RC4Encrypt.h
blob576fafdde01d5f4053a3071e0e4c57225a9ddf5f
1 //
2 // This file is part of the aMule Project.
3 //
4 // Copyright (c) 2003-2011 aMule Team ( admin@amule.org / http://www.amule.org )
5 // Copyright (c) 2002-2011 Merkur ( devs@emule-project.net / http://www.emule-project.net )
6 //
7 // Any parts of this program derived from the xMule, lMule or eMule project,
8 // or contributed by third-party developers are copyrighted by their
9 // respective authors.
11 // This program is free software; you can redistribute it and/or modify
12 // it under the terms of the GNU General Public License as published by
13 // the Free Software Foundation; either version 2 of the License, or
14 // (at your option) any later version.
16 // This program is distributed in the hope that it will be useful,
17 // but WITHOUT ANY WARRANTY; without even the implied warranty of
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 // GNU General Public License for more details.
21 // You should have received a copy of the GNU General Public License
22 // along with this program; if not, write to the Free Software
23 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #ifndef __RC4ENCRYPT_H__
27 #define __RC4ENCRYPT_H__
30 #include <vector>
33 #include "Types.h"
34 #include <common/StringFunctions.h>
35 #include "MemFile.h"
37 // Helper class
39 class MD5Sum;
41 struct RC4_Key_Struct
43 uint8 abyState[256];
44 uint8 byX;
45 uint8 byY;
49 class CRC4EncryptableBuffer : public CMemFile
51 public:
52 // Create, empty
53 CRC4EncryptableBuffer();
55 // Clear memory
56 ~CRC4EncryptableBuffer();
58 // Appends to the end, checking encrypted state.
59 void Append(const uint8* buffer, int n);
61 // Sets the encryption key
62 void SetKey(const MD5Sum& keyhash, bool bSkipDiscard = false);
64 // RC4 encrypts the internal buffer. Marks it as encrypted, any other further call
65 // to add data, as Append(), must assert if the inner data is encrypted.
66 // Make sure to check SetKey has been called!
67 void Encrypt();
69 // RC4 encrypts an external buffer with the current key.
70 void RC4Crypt(const uint8 *pachIn, uint8 *pachOut, uint32 nLen);
72 // Returns a uint8* buffer with a copy of the internal data, and clears the internal one.
73 uint8* Detach();
75 // Also clears the encryption flag
76 void ResetData();
78 // Resets everything, as if the object has just been created.
79 void FullReset();
81 private:
82 bool m_encrypted;
83 bool m_hasKey;
84 RC4_Key_Struct m_key;
86 void RC4CreateKey(const uint8* pachKeyData, uint32 nLen, bool bSkipDiscard);
89 #endif // __RC4ENCRYPT_H__