Protection question
Posted: Tue Mar 22, 2011 5:51 pm
suppose I have two functions a() and b();
What happens if I do?
a() {
VMProtectBegin("protect");
b();
VMProtectEnd();
}
b()
{
// do stuff
}
Is the content of b() visible in clear or is it also protected? Or do I need to call VMProtectBegin/End within b() as well?
What happens if I do?
a() {
VMProtectBegin("protect");
b();
VMProtectEnd();
}
b()
{
// do stuff
}
Is the content of b() visible in clear or is it also protected? Or do I need to call VMProtectBegin/End within b() as well?