I highly recommend the use of a salt, and the use of only 1 hashing algorithm once. Even MD5 is still safe, as aside from a brute-force attack the computational power needed to decrypt doesn't exist yet. (And if it does, it isn't available to your run-of-the-mill hacker.)
A good salt should incorporate letters, numbers, and symbols. I'd suggest a length longer than 8 characters; 32 is a good idea if you aren't hashing by the email address.
My algorithm typically looks like the following:
return sha1( $salt . $password . $email )
Addendum:
As discussed in the comments, a secret in your hash doesn't do any good if your database is compromised. For this matter, making the hash algorithm a stored procedure is a security risk (as you put the hash algorithm with the hashes themselves). If your database becomes compromised you should always change your salt, and send out an administrative message with a temporary password for each user (don't exclude the explanation).
While the computational power to crack a hash doesn't exist, and this hash is roughly as secure as they come ... none of it will guard against a weak password. For this purpose brute-force attacks will always be more effective, and so must be guarded against more strongly. I'd suggest a 15 minute ban for 5 failed attempts, and of course a logging of the event.
In summary:
- Make your DB password as secure and as complicated as you can possibly make it. I usually use the GRC password generator because it is 64 characters long with maximum entropy. Only write it down in a place that isn't: in source control, in a shared folder, in a system location.
- Hash more than just the password and salt. In fact, the more you cram in the more secure the hash is. However, any time the profile fields are changed that are used for the hash the password must be given to regenerate it; which is why the primary email address works best.
- Enforce some kind of password strength indicator in your software. Really, this shouldn't even be omitted! Not only that, but require a minimum strength to actually accept the password. While yes, this is a minor inconvenience to the users it makes them far safer from a brute force attack.
- Ensure your salt and algorithm are stored separately from the database, IE not in a stored procedure. Passwords are typically compromised one at a time, and usually the database itself is attacked instead of the filesystem; if your algorithm is there you've given the hacker all they need to crack your passwords on their own system without your brute force protections.
In light of some comments, plus some further knowledge, please understand that my suggestion is for general software that isn't for something that has to be extremely secure. IE, if someone steals the password to your forum account, most the time you'll be ticked about it–but not harmed outright. But, if someone steals the password to something highly personal or financially related, it's a whole other ball park!
For highly secure environments, I suggest the following.
- Use a military-grade hash algorithm like SHA512, GOST, or Whirlpool.
- For each installation of your software, enforce a policy of mixed characters plus frequent (2x monthly) password rotation.
- For each installation of your product, generate a very long (very, very!) random number that is stored in the configuration file as a secondary salt. I'd suggest numbers in the range of 1 trillion.
- NEVER STORE THE PASSWORD OUTSIDE THE DATABASE, EVER. If you must, key the user's account (in the database) to a specific login code that is then placed in the session (not a cookie) which differs at each login.
- Enforce a maximum login duration such as 1-2 days.
- Do not restrict password length, save the hashed result that is stored in the database. If the user memorizes a 60+ character long mnemonic let him use it, rather than enforcing "your password must be between 6 and 24 characters in length." This is the stupidest policy I see on every website, as the longer the length is, with more variations, the more secure the password is.
- Treat all input with absolute paranoia; allow nothing that could possibly lead to a session hijacking.
- Enforce a failure policy of 3 attempts-per-hour. Frankly, the user should be emailed immediately with the option to unlock if they've forgotten their password. But then again, assume it is compromised and limit that to 3 attempts as well. If someone uses all 9 attempts, then there's an obvious attack going on and the IP should be banned (or the incompetent user forced to pick another password).
And last but not least: I am not an expert. Be as paranoid as possible, make things as hard to intrude as possible, then, if you are still worried, contact a white-hat hacker to see what they say about your code/system.