What kind of hash does mysql use?
I'm writing my own code similar to phpMyAdmin. But I'll need the user to be able to sign on using their username and password from the mysql database. I need to know what kind of hash the mysql database uses to store each users password. I checked dev.mysql.com for answers but couldnt find anything, other than its the newer 41 byte hash beginning with an *. I don't think you will be able to decrypt password stoed in MySQL table and it's of no use using password which is stored in mysql . user table. You should be using password that is being set when User is created in your application, If you