How to use VMProtect properly in .NET?

Issues related to VMProtect
Post Reply
khangminh
Posts: 4
Joined: Fri Jan 03, 2020 4:51 pm

How to use VMProtect properly in .NET?

Post by khangminh »

Hello Sir,

Do i need to use VMProtect.SDK.DecryptString for every string I need to use in my program? If the strings are not visible to the user or just passed from varibles? Is it really helps me to secure the strings?

Thanks
p/s: Would you give me another details example how to use it properly? The Examples includes for .Net are not enough.
Admin
Site Admin
Posts: 2585
Joined: Mon Aug 21, 2006 8:19 pm
Location: Russia, E-burg
Contact:

Re: How to use VMProtect properly in .NET?

Post by Admin »

You have to use VMProtect.SDK.DecryptString for all strings that you want to hide from decompiler in your assembly. Something like this:

Code: Select all

MessageBox.Show(VMProtect.SDK.DecryptString("Correct password"), VMProtect.SDK.DecryptString("Password check"), MessageBoxButtons.OK, MessageBoxIcon.Information);
Post Reply