Protection question

Issues related to VMProtect
Post Reply
alex99
Posts: 1
Joined: Tue Mar 22, 2011 5:33 pm

Protection question

Post by alex99 »

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?
Admin
Site Admin
Posts: 2586
Joined: Mon Aug 21, 2006 8:19 pm
Location: Russia, E-burg
Contact:

Re: Protection question

Post by Admin »

If you want to protect the content of b() you need to include this function into the list for protection.
Post Reply