Hi
I am new in .net world, and I am developing a web application, in which I have a form where the users log in, but I have a problem, I have to encrypt the password but I don't know how.
Please I need some help.
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.
Jan MontanoPosted Jul 29, 2007, 11:24 PM
There are many ways to encrypt data. from having your own encryption algorithm to using .net encryption classes.
An example of our own encryption algorithim could be as simple as:
password = "juan"
encryptedPassword = "kvbo"
Just by replacing each character in "juan" with the next letter in the alphabet, we're able to encrypt it to "kvbo"
For a more secured encryption however, maybe this could help Simple Encryption .NET