mirror of
https://github.com/openappsec/openappsec.git
synced 2025-06-28 16:41:02 +03:00
15 lines
236 B
C++
15 lines
236 B
C++
#ifndef __HELPER_H__
|
|
#define __HELPER_H__
|
|
|
|
#include <string>
|
|
|
|
namespace IPSHelper
|
|
{
|
|
|
|
std::string deobfuscateString(const std::string &str);
|
|
std::string deobfuscateKeyword(const std::string &str);
|
|
|
|
} // IPSHelper
|
|
|
|
#endif // __HELPER_H__
|