I wonder what the way is to Login to my FTP server with encrypted UserName and Password ?
Normally when you login to a FTP Server, the UserName and Password travels as plain "text" wich could be "Hijacked" on the way.
I wonder if there is a way to send the UserName and Password Encrypted when logging in to the FTP Server ?
(These are some of the lines when doing the connection. Full code is avaliable)
String FilePath = "ftp://website.com:21/Data/";
objRequest = (FtpWebRequest)WebRequest.Create(FilePath);
objRequest.Credentials = new NetworkCredential("User", "Password");
//What is needed to do in order to do this connection encrypted ?