I have read a lot of answers about this topic like:
- https://softwareengineering.stackexchange.com/questions/115406/is-it-more-secure-to-hash-a-password-multiple-times.
- https://stackoverflow.com/questions/348109/is-double-hashing-a-password-less-secure-than-just-hashing-it-once
- https://stackoverflow.com/questions/3786323/multiple-password-hash
None of these seem to talk about hashing multiple times with different salts.
Is this method of hashing:
hash(hash(hash(pass+salt1)+salt2)+salt3)
more secure than:
hash(hash(hash(pass+salt1)+salt1)+salt1)
where salt1,salt2,salt3 are different random salts, and the same hash function is used each time?