|
Hi everyone.
I want to use the mod_auth_mysql addon for my apache server in order to use a list of username and password values (in a mysql database) to protect directories. Only issue is that the addon supports md5 encryption but doesn't appear to when you use a salt... like so...
$password = "I love chinese food";
$salt = "chicken friend rice";
md5($salt . $salt . $salt . $password);
Has anyone had experience with this addon and can you provide any advise? Sorry if this has been posted in the wrong forum - I can't find one aimed at apache.
|