When you want to encrypt the authentication ticket using forms authentication the method I have used is the FormsAuthentication.Encrypt which take a FormsAuthenticationTicket object as a parameter.
Is there a way to encrypt something else (like a database password or an unauthenticated user cookie) with the same algorithm or method used by forms authentication rather than creating one.
...
Go to the complete details ...