Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Custom password separator in md5($salt.$pass)
04-11-2012, 12:24 AM
Post: #4
RE: Custom password separator in md5($salt.$pass)
This is because atom creates custom optimized modules per hash type. If anyone requests md5($salt.$pass) with a 9 char salt (your 8 random chars + "/"), your hashes will be as weak as any other salted md5.

If you really want to make hashes hard to crack, you need to make it slow. Use something like PBKDF2, not cheap self made pseudo secure crap.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Custom password separator in md5($salt.$pass) - undeath - 04-11-2012 12:24 AM