setting type to hashed seems to not allow enablePasswordRetrieval. what if a user forgot their password?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

When a hashed password is lost, the only option is to create a new one. Either by the user or by an administrator(-tool).

A common practice is to send a link to a secured page where the user can enter a new password.

link|improve this answer
feedback

Hashes are not-reversible to their native form, which is why password recovery is not possible. If this is a requirement you will need to use encryption instead. To do this, change passwordFormat="Hashed" to passwordFormat="Encrypted"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.