Dynadot โ€” .com Registration $8.99

How to convert text to MD5

Spaceship Spaceship
Watch
Impact
11
I want to know how I can convert a password a user enters, into MD5.


Edit: nvm, too easy :P
 
Last edited:
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
GoDaddyGoDaddy
Just for others curious about this same question...

PHP:
$password = md5($password);
 
0
•••
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);
 
0
•••
I would recommend double md5s.

Rainbow tables will be useless, and its easy to double md5.
 
0
•••
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.
 
0
•••
Unstoppable Domains
Domain Recover
NameMaxi - Your Domain Has Buyers
  • The sidebar remains visible by scrolling at a speed relative to the pageโ€™s height.
Back