3
How to do upload/download of a file on an FTP server without this server’s login information being visible in the code? For example, I nay I want to do the following:
string FTPhost = "ftp://192.168.1.1/";
string FTPpass = "SenhaDoAcessoFTP";
string FTPuser = "Usuário";
FTPclient.Connect(FTPhost, FTPpass, FTPuser);
And that information can be easily seen with a decompiler. How do I hide this, and make the user who is using the application not have access to these passwords by no means?