我需要一个实用程序/工具或其他方式来混淆或加密 C/C++ 源代码中的代码块,例如:
int myfunc()
{
BEGIN_CRYPT
return 0;
END_CRYPT
}
int main()
{
BEGIN_CRYPT
printf( "This part is crypted\n" );
END_CRYPT
printf( "This part isn't crypted\n" );
return 0;
}
有人知道这个实用程序/工具吗?
谢谢丹尼尔