Okay, I know this is probably dead simple, but I can't seem to find a straight answer anywhere. Let's say I have the following:
Password: "mypassword"
Salt: 1234567
Is the idea of salting to do something like hash(password + salt)
or hash(password) + salt
? My guess is that only the former makes any sense at all, but I just want to make sure I'm not missing something.
Please forgive my ignorance.