Nothadoth Posted July 9, 2007 Share Posted July 9, 2007 I am using this to encrypt the password when the user changes his/her password: $enewpass = crypt($newpass); however, when i go to make the user login and do this it returns two different encrypted passwords that do not match despite the password being "test": $password = crypt($_POST['password']); Why? It is encrypting it differently each time. Can i make it encrypt it the same? Or decrypt it correctly? Thanks Quote Link to comment Share on other sites More sharing options...
per1os Posted July 9, 2007 Share Posted July 9, 2007 Try specifying a salt for it. Quote Link to comment Share on other sites More sharing options...
quickstopman Posted July 9, 2007 Share Posted July 9, 2007 make your own encrypter or just use md5 Quote Link to comment Share on other sites More sharing options...
Nothadoth Posted July 9, 2007 Author Share Posted July 9, 2007 could you help me do this? Quote Link to comment Share on other sites More sharing options...
Yesideez Posted July 9, 2007 Share Posted July 9, 2007 At the start of your script make a salt. Here I'm going to define a constant: define("STR_PWSALT",'fditaa7'); When you encrypt the password to make a 32 character hash use something like this: $encpass=md5($password.STR_PWSALT); That adds the salt onto the end of your password then encrypts the lot. That way if someone was to grab your PW hash from the database and try using a web hammer sort of thing on it the chances of them finding it out are greatly reduced. You can change th salt in the define() bit to whatever you want but make sure it stays the same to what you encrypt it as and what you are checking it with. Quote Link to comment Share on other sites More sharing options...
Nothadoth Posted July 9, 2007 Author Share Posted July 9, 2007 I managed to do it with this: $password = crypt($login['pass'], 'rl'); How do i unencrypt this for password recovery? Quote Link to comment Share on other sites More sharing options...
thefortrees Posted July 9, 2007 Share Posted July 9, 2007 It is a one way hash - you can't recover it. http://us.php.net/manual/en/function.crypt.php Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.