pianoman993
02-04-2009, 07:08 PM
When a user enters their password in the password field, what is happening to the password (specifically) to create the unique password alphanumeric combination in the user table? I know the password is being hashed and salted, what I really would like to know is how it is being hashed and salted. For example
$_GET['password'] = $password; (we got the password field)
MD5($password)... ? (what gets us to the password alphanumeric combination in the user's table?)
Any help would be greatly appreciated! Thanks!
- Pianoman993
$_GET['password'] = $password; (we got the password field)
MD5($password)... ? (what gets us to the password alphanumeric combination in the user's table?)
Any help would be greatly appreciated! Thanks!
- Pianoman993