if ループで難読化を行う、次のような 2 つの関数があります。
void funcA(string str)
{
size_t f = str.find("if");
if(f!=string::npos)
{
funcB(str); //obfuscate if-loop
}
}
void funcB(string str)
{
//obfuscate if loop
funcA(body_of_if_loop); //to check if there is a nested if-loop
}
これに関する問題は、前に置くとfuncA
が見えないことfuncB
、またはその逆です。funcB
funcA
ここで助けやアドバイスをいただければ幸いです。