I'm trying to correctly do a per user and site wide salt for my passwords. Here's what I've got:
require('../../salt.php'); //this is above the web root and provides $salt variable
$pw = mysql_real_escape_string($_POST['pw']);
$per_user_salt = uniqid(mt_rand());
$site_salt = $salt //from salt.php that was required on first line
$combine = $pw . $per_user_salt . $site_salt;
$pw_to_put_in_db = hash("sha512", $combine);
Is this right? Thanks
mysql_real_escape_string. The resultanthash()would change any invalid SQL to a letter/number. (2) Ensure you're storing your$per_user_saltin a safe, secure way to retrieve it when your users are trying to login with their password. – Charles Sprayberry Jun 25 '11 at 17:09INSERT INTO users (per_user_salt) VALUES ($per_user_salt)? – Andypandy Jun 25 '11 at 17:15hash("sha512", $pw . md5($pw) . $site_salt);, which is about as secure as a random generated number (as long as you don't tell anyone your algorithm). The big upside is, that hacking your database (for example using injection) will not result in theper_user_saltbeing shown, as it is notstored. – KilZone Jun 25 '11 at 17:55$combinebecomes more complex, but I like your last option best. However, in the end it comes down to personal preference. Just remember that yoursalt-trick is a form of security-through-obscurity, the less people know about how you make your$combinethe better. Try to come up with something uncommon, like the two you just posted and you'll be fine. – KilZone Jun 25 '11 at 18:02