Hi all ,
Can you help me ,
please i want to know how i can to Encrypt word (such as Password) in asp.net with C#
example , i have the password "aaa" how i can to Encrypt it .
thanks.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rajkumar MurugesanPosted Jan 15, 2006, 10:20 AM
string
hashedPassword=FormsAuthentication.HashPasswordForStoringInConfigFile(txtPassword.Text,"MD5");the class FormsAuthentication will be in System.Web.Security Namespace
Jim PetersonPosted Jan 2, 2006, 6:30 PM
students552Posted Jan 2, 2006, 3:13 AM
thank you mr Nirlep Kaur
you mean there is no method in .Net to do the Encrypt ?
Nirlep KaurPosted Jan 1, 2006, 11:44 PM