I'm making a website and of course want to incorporate memberships and logins, etc and while I understand the theoretical application of salting and hashing a user-inputted password to save the encrypted pass in my database, I'm not sure on the approach...
What I would do is get the hashCode of the string/password and then salt it BUT that won't work as the hashCode will never be the same so it would be impossible to compare them...
So how would you actually hash a password? Have I got it all wrong and by hashing a password you don't actually mean getting the hashcode?