Search found 4 matches
- Wed Jan 15, 2020 5:08 pm
- Forum: Technical questions
- Topic: How to use VMProtect.SDK.DecryptString
- Replies: 4
- Views: 5850
Re: How to use VMProtect.SDK.DecryptString
You have to use VMProtect.SDK.DecryptString for all const strings that you want to hide from your assembly. Something like this: private void btnCheckPassword_Click(object sender, EventArgs e) { if (CheckPassword(txtPassword.Text)) { MessageBox.Show(VMProtect.SDK.DecryptString("Correct passwor...
- Wed Jan 15, 2020 6:42 am
- Forum: Technical questions
- Topic: How to use VMProtect.SDK.DecryptString
- Replies: 4
- Views: 5850
Re: How to use VMProtect.SDK.DecryptString
Is that require to put all varibles contain some strings (they're not visible to user) inside DecryptString method when put them into the constructor of another method or an method sir?
Regards,
Regards,
- Sun Jan 05, 2020 1:14 pm
- Forum: Technical questions
- Topic: How to use VMProtect properly in .NET?
- Replies: 1
- Views: 3488
How to use VMProtect properly in .NET?
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? Th...
- Fri Jan 03, 2020 5:19 pm
- Forum: Technical questions
- Topic: How to use VMProtect.SDK.DecryptString
- Replies: 4
- Views: 5850
How to use VMProtect.SDK.DecryptString
Hello sir, I'm new to vmprotect. I'm using .net to develope a console program. I just don't now is "VMProtect.SDK.DecryptString" to use is required to use for visible text only (Console.WriteLine or Console.Write) or for all methods will use the text content passed from the varibles? Is it...