Retrieving password when the password stored as a hash value

前端 未结 8 995
遥遥无期
遥遥无期 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:31

    Hashed passwords cannot be retrieved in general (this depends on the hashing function, secure hashes cannot be retrieved). If they have the same hash on two sites, they could have the same password, this depends on the hash salt used by the sites, what method etc.

    If your password is securely stored in a good hashing system, a provider should never be able to email you your password, you must reset your password if you forget it.

提交回复
热议问题