Is hashing of just "username + password" as safe as salted hashing
- by randomA
I want to hash "user + password".
EDIT: prehashing "user" would be an improvement, so my question is also for hashing "hash(user) + password". If cross-site same user is a problem then the hashing changed to hashing "hash(serviceName + user) + password"
From what I read about salted hash, using "user + password" as input to hash function will…