HI! I have problem to secure connection Mysql server with my desktop app.
I want to encrypt my password.
I heared about RSA or SSL but i don't know how to use it.
Please help me. This is how i connect:
private MySqlConnection connection;
private string server;
private string database;
private string uid;
private string password;
private void Initialize()
{
server = "localhost";
database = "databaseName";
uid = "username";
password = "password";
string connectionString;
connectionString = "SERVER=" + server + ";" +
"DATABASE=" + database + ";" + "UID=" + uid + ";" +
"PASSWORD=" + password + ";";
connection = new MySqlConnection(connectionString);
}
Mateusz TurismoGMPosted Oct 15, 2015, 2:14 PM
Mukesh KumarPosted Oct 15, 2015, 1:22 PM
mark it accepted if it helps you.
Mateusz TurismoGMPosted Oct 15, 2015, 10:42 AM
Nilesh JadavPosted Oct 12, 2015, 9:25 AM
1) http://thesqldude.com/2012/04/21/setting-up-ssl-encryption-for-sql-server-using-certificates-issues-tips-tricks/
mark it accepted if you are satisfy with the answer
Ravi KumarPosted Oct 12, 2015, 7:37 AM