show/hide this revision's text 2 spelling, grammar, and formatting

Gravar

Gravatar uses an md5 hash. Now, typically you'd run the risk of a brute force dictionary attack, but emails tend to content pretty abnormal words...for example, I'd be surprised if a dictionary of words contained "stackoverflow", and then to add the permutations of ".com", ".net" and ".org" plus the many possibilities of usernames (which may be an alias rather an a real name), and I think it's reasonably safe.

That said, they probably could have used something other than MD5. MD5 is a hashing algorithm meant for speed. This is a common mistake for people who hash passwords. You should pick something intentionally slow, so that brute force attacks are even less likely.

show/hide this revision's text 1

Gravar uses an md5 hash. Now, typically you'd run the risk of a brute force dictionary attack, but emails tend to content pretty abnormal words...for example, I'd be surprised if a dictionary of words contained "stackoverflow", and then to add the permutations of ".com", ".net" and ".org" plus the many possibilities of usernames (which may be an alias rather an a real name), and I think it's reasonably safe.

That said, they probably could have used something other than MD5. MD5 is a hashing algorithm meant for speed. This is a common mistake for people who hash passwords. You should pick something intentionally slow, so that brute force attacks are even less likely.