Hi All
I want simple encryption and decryption of password in C#.NET. how to save the password in encrypted format in database and retrieve as original format by decryption, kindly anyone help with sample code.
thanks in advance
|
|
Hi All I want simple encryption and decryption of password in C#.NET. how to save the password in encrypted format in database and retrieve as original format by decryption, kindly anyone help with sample code. thanks in advance
|
||||||
|
|
|
If your answer to the question in my comment is "No", here's what I use:
|
||||||
|
|
|
Here you go. I found it somewhere on the internet. Works well for me.
|
||
|
|
|
|
This question will answer how to encrypt/decrypt: http://stackoverflow.com/questions/202011/encrypt-decrypt-string-in-c You didn't specify a database, but you will want to base-64 encode it, using Convert.toBase64String. For an example you can use: http://www.opinionatedgeek.com/Blog/blogentry=000361/BlogEntry.aspx You then either save it in a varchar or a clob, depending on how long your encrypted message is, but for a password a varchar should work. The examples above will also cover decryption after decoding the base64 UPDATE: In actuality you may not need to use base64 encoding, but I found it helpful, in case I wanted to print it, or send it over the web. If the message is long enough I found it helpful to compress it first, then encrypt, as it is harder to use brute-force when the message was already in a binary form, so it would be hard to tell when you successfully broke the encryption. |
||||||
|
|
|
One of the simplest methods of encryption (if you absolutely MUST make one up yourself since .NET has such awesome encryption libraries already [as provided by Cogwheel just before me]) is to XOR the ASCII value of each character of the input string against a known "key" value. XOR functionality in C# is accomplished using the ^ key I believe. Then you can convert the values back from the result of the XOR to ASCII Chars, and store them in the database. This is not highly secure, but it is one of the easiest encryption methods. Also, if using an access database, I've found that some characters when put in front of a string make the entire field unreadable when opening the database itself. But the field is still readable by your app even though it is blank to a malicious user. But who uses access anymore anyway right? |
||||||
|