In order to increase the security in your web application, for example, you could use System.Web.Security.FormsAuthentication.HashPasswo rdForStoringInConfigFile(string, "sha1").
But, don't forget that you'll always have to compare encrypted strings and provide a way to users have new passwords generated by the application.
|