8 ms·
If the salts are different, it will definitely change. On the other hand, using the same salt twice will change the hash if it's put before the data, but not i
by adr_ 15y ago
If the salts are different, it will definitely change.
On the other hand, using the same salt twice will change the hash if it's put before the data, but not if it's put after the data.
Given an MD5 collision, you can apply a common suffix and still have a hash collision. Applying a common prefix changes the state the hash process is in when it reaches the colliding data and this breaks the collision.
- justindocanto 15y agoGood to know. Thank you =)