This is probably a stupid question but I will ask it any for clarity.
Mission statement: A secure auth controller
I have code but its unfinnished so I will not post it. Although is there any point in what I call "double" hashing.
For example, using a sha1 encryption then md5 over that, with a salt.
$userpass = md5(sha1($pass . $salt));
is there any point in doing that or is the concept redundent?