Wow awesome scripts, specially this one.
Quote:
|
Originally Posted by RaelRode
PHP Code:
// This function encrypts users passwords 3 times.
function encrypt($encrypt)
{
$encrypt = md5($encrypt); // Encrypt the string to MD5
$encrypt = sha1($encrypt); // Encrypt the MD5 string to SHA1
$encrypt = md5($encrypt); // Encrypt the SHA1 string to MD5 AGAIN!!
return $encrypt; // Return the encrypted string.
} // End encryption function
|
And one from me.
To write something, on the page.
