I have a desktop application that sends e-mail using a remote smtp server. So in the code, I have something like this:
string userName = "Alex";
string pass = "123456";
sendEmail(userName, pass);
Anyone who changes my application will have access to my mail server. I wonder if there are any solutions to protect sensitive data (userName, pass) from reversing? No obfuscation.
Thanks, Alex.
source
share