killaklown VIP Member VIP โ 20 โ Impact 11 Apr 20, 2007 1K views 4 replies #1 I want to know how I can convert a password a user enters, into MD5. Edit: nvm, too easy :P Last edited: Apr 20, 2007
U user-7256 VIP Member VIP โ 20 โ Impact 111 Apr 21, 2007 #2 Just for others curious about this same question... PHP: $password = md5($password);
Hitch Established Member โ 20 โ Impact 74 Apr 21, 2007 #3 I know you found your solution, but, if you are going to use MD5 Encryption, i recommend using salt too. PHP: $salt = 's+(_a*'; $hashed_password = md5($password.$salt);
I know you found your solution, but, if you are going to use MD5 Encryption, i recommend using salt too. PHP: $salt = 's+(_a*'; $hashed_password = md5($password.$salt);
J jerometan Established Member โ 15 โ Impact 14 Apr 21, 2007 #4 I would recommend double md5s. Rainbow tables will be useless, and its easy to double md5.
U user-7256 VIP Member VIP โ 20 โ Impact 111 Apr 21, 2007 #5 True... although, for any basic use/user without critical data, making the encryption TOO complicated isn't really worth it. If you're going to go that far, you might as well use SHA1 with some MD5 and salts and double/triple encryption.
True... although, for any basic use/user without critical data, making the encryption TOO complicated isn't really worth it. If you're going to go that far, you might as well use SHA1 with some MD5 and salts and double/triple encryption.