20 lines
354 B
C++
20 lines
354 B
C++
#ifndef OBFUSCATOR_HPP
|
|
#define OBFUSCATOR_HPP
|
|
|
|
class Obfuscator{
|
|
|
|
public:
|
|
|
|
static unsigned char* encode(unsigned char* data, unsigned int dataLength, unsigned int* resultLength);
|
|
|
|
static unsigned char* decode(unsigned char* data, unsigned int dataLength, unsigned int* resultLength);
|
|
|
|
private:
|
|
|
|
Obfuscator();
|
|
|
|
|
|
};
|
|
|
|
#endif
|