I have an ASP.NET application that requires impersonation as an admin user. In web.config:
<identity impersonate="true" userName="administrator" password="password"/>
The client complained about saving the password in text format. Is there a way to save the password here as hashed?
source share