I have a website I built in MVC4 in razor view engine. I moved the database tables that were doing the encryption from the local database to our production database and changed the web.config file to adjust for this change. It now works fine, but I need to recover passwords. SO I end up having hashed passwords. Is there any way to translate it to recover the password?

有帮助吗?

解决方案

that's the point of a hash -> one way. it's not meant to be decrypted. instead, reset the user's password and notify the user of their new password. they can always log in and change it again.

其他提示

Not easily. Thats the point of a hash, its a one way function. You would have to crack it some how.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top