Author Topic: MD4/MD5 Collision generators  (Read 5482 times)

0 Members and 1 Guest are viewing this topic.

Offline iago

  • Leader
  • Administrator
  • Hero Member
  • *****
  • Posts: 17914
  • Fnord.
    • View Profile
    • SkullSecurity
Re: MD4/MD5 Collision generators
« Reply #15 on: November 14, 2005, 10:17:48 pm »
Or just use sha(md5(password)) forever :)

I personally use md5(md5(password) . md5(salt)) to store passwords, because I'm just that elite. :)

Offline Sidoh

  • x86
  • Hero Member
  • *****
  • Posts: 17634
  • MHNATY ~~~~~
    • View Profile
    • sidoh
Re: MD4/MD5 Collision generators
« Reply #16 on: November 14, 2005, 10:40:07 pm »
Or just use sha(md5(password)) forever :)

I personally use md5(md5(password) . md5(salt)) to store passwords, because I'm just that elite. :)

Hehe, I do use a salt for most of my applications that need hashing to work.  :)

That would work too though!  That's actuallly probably more secure than just using sha(password), wouldn't you think? :)