Pergunta

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?

Foi útil?

Solução

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.

Outras dicas

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

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top