I want to write a connect script which will use an encrypted password for connecting to the db! I am intending to use md5 for encryption!
Any ideas?
Thanks in advance!
How can i connect to Mysql using hash instead of password?
Moderator: General Moderators
Re: How can i connect to Mysql using hash instead of passwor
Simple answer: you can't. Instead you might wan't to look into MySQL's ability to use SSL certificates for authentication and encryption: http://dev.mysql.com/doc/mysql/en/Secure_GRANT.htmldimitris wrote:I want to write a connect script which will use an encrypted password for connecting to the db! I am intending to use md5 for encryption!
Any ideas?
Re: How can i connect to Mysql using hash instead of passwor
Ok Weirdan! Thanks! I try SSL.
Weirdan wrote:Simple answer: you can't. Instead you might wan't to look into MySQL's ability to use SSL certificates for authentication and encryption: http://dev.mysql.com/doc/mysql/en/Secure_GRANT.htmldimitris wrote:I want to write a connect script which will use an encrypted password for connecting to the db! I am intending to use md5 for encryption!
Any ideas?