Hashing is using an cryptographic algorithm to convert data like a password into a fixed length sting of characters called a fingerprint.
Salting is a way to randomize hashes by adding a random string (which is called a salt) before a password is hashed, which makes it much more difficult to crack the password hash.
Answer
Hashing is using an cryptographic algorithm to convert data like a password into a fixed length sting of characters called a fingerprint.
Salting is a way to randomize hashes by adding a random string (which is called a salt) before a password is hashed, which makes it much more difficult to crack the password hash.
This page explains it more thoroughly: http://crackstation.net/hashing-security.htm