I am looking for best salt in password I can add for my users.
I have already saved user password with small salt like:
$pass = "deerox";
$salt = "fg55fd45";
$password = md5($pass . $salt);
So I want best salt I can ever have I will be using sha512
now and it should take attackers to take ages to crack one password.
I can't generate random salt for all user as I have said I already saved password for them.
$pass1 = "deerox";
$pass = md5($pass1);
$salt1 = "fRY^YXCH%^d5fdffdstre324e6t45";
$salt2 = "sdgdfg#$#$@%FDG%GFDG54fds545342";
$password = hash("sha512", $salt1 . $pass . $salt2);
Just want to know it is secure or I can make it more secure??