A quick and dirty experiment.
I put this code into a .php
file and loaded it from my web host.
The result was "It works!" but.. why? Should it have failed? I was following Example #1 from here: http://php.net/manual/en/function.crypt.php
<?php
$pass1 = "thetimeshallwhintercows";
$salt = "temperpedic";
$crypt_pass = crypt($pass1, $salt);
if($crypt_pass == crypt("thetimeshallwhintercowz", $crypt_pass))
{
print("It works!<br/>");
print( $crypt_pass );
print("<br/>");
print(crypt("thetimeshallwhintercowz", $crypt_pass));
}
else
{
print("try again....");
}
?>
You should have a look at this answer to a similar question. the
crypt()
function requires that you have a correctly formatted salt. Whiletemperpedic
is a valid salt (sort of) it's not really a correctly formatted salt.If you have a look at the PHP documentation for the crypt() function there are a few examples of using crypt() with different hash types. Have a look at these examples.
Remember, with crypt for modern web applications, you should be using at least SHA-256.