How do I convert password hashing from MD5 to SHA?

前端 未结 7 681
谎友^
谎友^ 2020-12-29 08:06

I\'ve got an old application that has user passwords stored in the database with an MD5 hash. I\'d like to replace this with something in the SHA-2 family.

I\'ve tho

7条回答
  •  隐瞒了意图╮
    2020-12-29 08:42

    If the MD5's aren't salted you can always use a decryption site/rainbow tables such as: http://passcracking.com/index.php to get the passwords. Probably easier to just use the re-encode method though.

提交回复
热议问题