Hello All,
Hopefully someone will have some knowledge about these php crypts. I actually have two questions here 🙂
1) ----------------
I know there are some contants that can be checked for MD5 hashing for example we can do this
if ( CRYPT_MD5 )
$password = md5($password);
But i can't seem to find out what the constent is for sha1 i.e. ??CRYPT_SHA1??
if ( CRYPT_SHA1 )
$password = sha1($password);
I tried that but it didn't work
2)-----------------------
what is this blowfish thing? I see it being refered to as some type of encyption or hashing but I can't seem to find a php function called blowfish()
They even have a contant for it i.e.
if ( CRYPT_BLOWFISH )
$password = blowfish($password);
we seem to be missing blowfish() in php?