Welcome Guest, Not a member yet? Register   Sign In
hash function not working at all...
#6

[eluser]Unknown[/eluser]
I got it fixed, it turned out that the login form wasn't posting input to the correct controller.

About the hashing, I use triple salting in production-ready code, this one was just for testing.

something like:
Code:
$pass = hash('sha512', $pass.$salt1.$pass);
$pass = hash('sha512', $salt2.$pass.$pass);
$pass = hash('sha512', $pass.$pass.$salt3);


Messages In This Thread
hash function not working at all... - by El Forum - 05-27-2010, 06:45 PM
hash function not working at all... - by El Forum - 05-28-2010, 06:15 AM
hash function not working at all... - by El Forum - 05-28-2010, 07:07 AM
hash function not working at all... - by El Forum - 05-28-2010, 07:25 AM
hash function not working at all... - by El Forum - 05-28-2010, 07:36 AM
hash function not working at all... - by El Forum - 05-28-2010, 10:59 AM



Theme © iAndrew 2016 - Forum software by © MyBB