Retrieving password when the password stored as a hash value

前端 未结 8 1012
遥遥无期
遥遥无期 2021-01-05 14:15

Can users request that their password be emailed to themselves if the password is stored as a hash value?

Is there any way to convert a hash value to the clear text

8条回答
  •  感动是毒
    2021-01-05 14:40

    There are different types of hashing algorithms. Some are more secure than others. MD5 is a popular, but insecure one. The SHA-family is another more secure set of algorithms.

    By definition, a hash is a one way function. It can not be reversed.

    http://en.wikipedia.org/wiki/Sha-1

提交回复
热议问题