Enter Password to Encrypt: This will create a one-way hash of the string "greg", using MD5, returing that hashed value in sExample. string sExample = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile("greg", "MD5"); Example:Encryption Type:
Encrypt Password   This form uses System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile to encrypt the password you enter, using either MD5 or SHA1. It is intended to be used for the APS.NET Web.config file (Security) If you have any questions, let me know

IPLeash