Is it possible to decrypt MD5 hashes?

前端 未结 24 2354
北荒
北荒 2020-11-21 06:22

Someone told me that he has seen software systems that:

  1. retrieve MD5 encrypted passwords from other systems;
  2. decrypt the encrypted passwords and
24条回答
  •  花落未央
    2020-11-21 06:59

    See all other answers here about how and why it's not reversible and why you wouldn't want to anyway.

    For completeness though, there are rainbow tables which you can look up possible matches on. There is no guarantee that the answer in the rainbow table will be the original password chosen by your user so that would confuse them greatly.

    Also, this will not work for salted hashes. Salting is recommended by many security experts.

提交回复
热议问题