Hello,
I'm encrypting passwords using the FormsAuthentication Class:
Encrypt = FormsAuthentication.HashPasswordForStoringInConfigFile(Password, "SHA1"
I didn't find how to decrypt this password. The Decrypt method seems to be available only if there is a cookie but my users don't systematically have one. Even though, I tried to use Decrypt unsuccessfully.
I'm encrypting passwords using the FormsAuthentication Class:
Encrypt = FormsAuthentication.HashPasswordForStoringInConfigFile(Password, "SHA1"
I didn't find how to decrypt this password. The Decrypt method seems to be available only if there is a cookie but my users don't systematically have one. Even though, I tried to use Decrypt unsuccessfully.