hi all,
' .
'CRYPT_STD_DES ' . CRYPT_STD_DES . "\n" .
'CRYPT_EXT_DES ' . CRYPT_EXT_DES . "\n" .
'CRYPT_MD5 ' . CRYPT_MD5 . "\n" .
'CRYPT_BLOWFISH ' . CRYPT_BLOWFISH . '';
echo crypt('clear_pass', '$1$salt1234$');
?>
// outputs
CRYPT_STD_DES 1
CRYPT_EXT_DES 0
CRYPT_MD5 1
CR
Hello all,
I currently having some trouble getting PHP to compile with the correct
crypt() support. It seems that when compiled as a DSO under Apache
crypt() will not do MD5 encryption. However if I compile PHP standalone
then all works correctly. I have tried with and without mod_ssl. I
h
2 matches
Mail list logo