2023-07-27 15:41:41 +00:00

16 lines
261 B
C++

#ifndef __HELPER_H__
#define __HELPER_H__
#include <string>
namespace IPSHelper
{
bool hasDeobfuscation();
std::string deobfuscateString(const std::string &str);
std::string deobfuscateKeyword(const std::string &str);
} // IPSHelper
#endif // __HELPER_H__