vote up 1 vote down star

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

flag

0% accept rate
4  
Is there any particular reason you need to retrieve it? Most of the time you can simply use a hash function to store it. Then when they enter their password, you hash their entry and compare. – Cogwheel Nov 5 at 5:41
Sounds like homework. – James Black Nov 5 at 5:47

4 Answers

vote up 4 vote down

If your answer to the question in my comment is "No", here's what I use:

    public static byte[] HashPassword(string password)
    {
        var provider = new SHA1CryptoServiceProvider();
        var encoding = new UnicodeEncoding();
        return provider.ComputeHash(encoding.GetBytes(password));
    }
link|flag
SHA1 has been compromised, as shown here: okami-infosec.blogspot.com/2007/01/… – James Black Nov 5 at 6:50
I don't believe any of the SHA-2 family has been compromised, you may want to use one of these: en.wikipedia.org/wiki/… – James Black Nov 5 at 6:52
But, it depends on how secure, or how paranoid, you will be. At the university I was very paranoid. – James Black Nov 5 at 6:53
vote up 1 vote down

Here you go. I found it somewhere on the internet. Works well for me.

    /// <summary>
    /// Encrypts a given password and returns the encrypted data
    /// as a base64 string.
    /// </summary>
    /// <param name="plainText">An unencrypted string that needs
    /// to be secured.</param>
    /// <returns>A base64 encoded string that represents the encrypted
    /// binary data.
    /// </returns>
    /// <remarks>This solution is not really secure as we are
    /// keeping strings in memory. If runtime protection is essential,
    /// <see cref="SecureString"/> should be used.</remarks>
    /// <exception cref="ArgumentNullException">If <paramref name="plainText"/>
    /// is a null reference.</exception>
    public string Encrypt(string plainText)
    {
        if (plainText == null) throw new ArgumentNullException("plainText");

        //encrypt data
        var data = Encoding.Unicode.GetBytes(plainText);
        byte[] encrypted = ProtectedData.Protect(data, null, Scope);

        //return as base64 string
        return Convert.ToBase64String(encrypted);
    }

    /// <summary>
    /// Decrypts a given string.
    /// </summary>
    /// <param name="cipher">A base64 encoded string that was created
    /// through the <see cref="Encrypt(string)"/> or
    /// <see cref="Encrypt(SecureString)"/> extension methods.</param>
    /// <returns>The decrypted string.</returns>
    /// <remarks>Keep in mind that the decrypted string remains in memory
    /// and makes your application vulnerable per se. If runtime protection
    /// is essential, <see cref="SecureString"/> should be used.</remarks>
    /// <exception cref="ArgumentNullException">If <paramref name="cipher"/>
    /// is a null reference.</exception>
    public string Decrypt(string cipher)
    {
        if (cipher == null) throw new ArgumentNullException("cipher");

        //parse base64 string
        byte[] data = Convert.FromBase64String(cipher);

        //decrypt data
        byte[] decrypted = ProtectedData.Unprotect(data, null, Scope);
        return Encoding.Unicode.GetString(decrypted);
    }
link|flag
vote up 1 vote down

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.

link|flag
Besides portability, are there any substantial benefits to using base-64 instead of binary (if the db supports it)? – Cogwheel Nov 5 at 5:59
No benefit, other than the fact that it is easier to store, to treat as a string, and if you need to move it around I find it easier. I am not a fan of using blobs, mainly because I spent so long on mysql where they really didn't have support, so I just think that way. Besides, if you want to print out the encrypted message then it is in a printable fashion, which can be handy, just to see what happened. – James Black Nov 5 at 6:14
Good point... I converted the hash to a string once during debugging and compared the resulting kanji >< – Cogwheel Nov 5 at 6:31
vote up 0 vote down

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?

link|flag
I know, right? look around innocently (Actually, I'm in the middle of writing a proposal to get rid of the system I inherited and enter the 21st century) – Cogwheel Nov 5 at 5:55
God help us all :( – zebrabox Nov 5 at 17:43
I feel his pain. The only reason I knew that about access is because I was dealing with a project at my job that used an old access Database. It was already being up-converted at the time, but that didn't stop the customers from requesting new features of the old version. – Jrud Nov 5 at 19:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.