Click here to Skip to main content
15,881,852 members
Articles / Programming Languages / C#

Simple String Encryption and Decryption with Source Code

Rate me:
Please Sign up or sign in to vote.
4.72/5 (50 votes)
21 Feb 2008CPOL 273.3K   11.2K   62   48
Sample program for simple encryption and decryption of strings

Introduction

This article helps the C# beginners to do simple encryption and decryption of strings. It will be useful for simple password encryption or any such string encryption.

Encryption using the default key:

Encryption1.jpg

Encryption using the user's custom key:

Encryption.jpg

Decryption using the user's custom key:

Image 3

Using the Code

The demo application uses a class SSTCryptographer which contains two static overloaded methods and a static property. 

How To Use the Given Code

On Button clicks:

C#
private void btnEncrypt_Click(object sender, EventArgs e)
{ 
txtOutputText.Text = SSTCryptographer.Encrypt(txtInputText.Text,SetKey());
}
private void btnDecrypt_Click(object sender, EventArgs e)
{
txtOutputText.Text = SSTCryptographer.Decrypt(txtInputText.Text,SetKey());
}

/// <summary>
/// Encrypt the given string using the default key.
/// </summary>
/// <param name="strToEncrypt">The string to be encrypted.</param>
/// <returns>The encrypted string.</returns>
public static string Encrypt(string strToEncrypt)
{
    try
    {
        return Encrypt(strToEncrypt, _key);
    }

    catch (Exception ex)
    {
        return "Wrong Input. " + ex.Message;
    }
} 

/// <summary>
/// Decrypt the given string using the default key.
/// </summary>
/// <param name="strEncrypted">The string to be decrypted.</param>
/// <returns>The decrypted string.</returns>
public static string Decrypt(string strEncrypted)
{
    try
    {
        return Decrypt(strEncrypted, _key);
    }
    catch (Exception ex)
    {
        return "Wrong Input. " + ex.Message;
    }
}

/// <summary>
/// Encrypt the given string using the specified key.
/// </summary>
/// <param name="strToEncrypt">The string to be encrypted.</param>
/// <param name="strKey">The encryption key.</param>
/// <returns>The encrypted string.</returns>
public static string Encrypt(string strToEncrypt, string strKey)
{
    try
    {
        TripleDESCryptoServiceProvider objDESCrypto = 
			new TripleDESCryptoServiceProvider();
        MD5CryptoServiceProvider objHashMD5 = new MD5CryptoServiceProvider();
        byte[] byteHash, byteBuff;
        string strTempKey = strKey;
        byteHash = objHashMD5.ComputeHash(ASCIIEncoding.ASCII.GetBytes(strTempKey));
        objHashMD5 = null;
        objDESCrypto.Key = byteHash;
        objDESCrypto.Mode = CipherMode.ECB; //CBC, CFB
        byteBuff = ASCIIEncoding.ASCII.GetBytes(strToEncrypt);
        return Convert.ToBase64String(objDESCrypto.CreateEncryptor().
			TransformFinalBlock(byteBuff, 0, byteBuff.Length));
    }
    catch (Exception ex)
    {
        return "Wrong Input. " + ex.Message;
    }
}

/// <summary>
/// Decrypt the given string using the specified key.
/// </summary>
/// <param name="strEncrypted">The string to be decrypted.</param>
/// <param name="strKey">The decryption key.</param>
/// <returns>The decrypted string.</returns>
public static string Decrypt(string strEncrypted, string strKey)
{
    try
    {
        TripleDESCryptoServiceProvider objDESCrypto = 
			new TripleDESCryptoServiceProvider();
        MD5CryptoServiceProvider objHashMD5 = new MD5CryptoServiceProvider();
        byte[] byteHash, byteBuff;
        string strTempKey = strKey;
        byteHash = objHashMD5.ComputeHash(ASCIIEncoding.ASCII.GetBytes(strTempKey));
        objHashMD5 = null;
        objDESCrypto.Key = byteHash;
        objDESCrypto.Mode = CipherMode.ECB; //CBC, CFB
        byteBuff = Convert.FromBase64String(strEncrypted);
        string strDecrypted = ASCIIEncoding.ASCII.GetString
		(objDESCrypto.CreateDecryptor().TransformFinalBlock
		(byteBuff, 0, byteBuff.Length));
        objDESCrypto = null;
        return strDecrypted;
    }
    catch (Exception ex)
    {
        return "Wrong Input. " + ex.Message;
    }
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Santhisoft Technologies
India India

Comments and Discussions

 
GeneralRe: My vote of 5 Pin
Vijay Raghava Reddy9-Aug-13 1:32
Vijay Raghava Reddy9-Aug-13 1:32 
GeneralMy vote of 5 Pin
Bob Brown 1227-Mar-12 8:00
Bob Brown 1227-Mar-12 8:00 
GeneralRe: My vote of 5 Pin
Lovely M29-Jul-13 19:47
Lovely M29-Jul-13 19:47 
GeneralMy vote of 3 Pin
jawaharraj8914-Mar-12 20:11
jawaharraj8914-Mar-12 20:11 
GeneralRe: My vote of 3 Pin
Lovely M29-Jul-13 19:48
Lovely M29-Jul-13 19:48 
QuestionNice article Pin
lintovadakkekudy6-Mar-12 20:11
lintovadakkekudy6-Mar-12 20:11 
AnswerRe: Nice article Pin
Lovely M29-Jul-13 19:48
Lovely M29-Jul-13 19:48 
QuestionCharacter sets Pin
Mark Roebuck3-Sep-11 2:32
Mark Roebuck3-Sep-11 2:32 
I'm using your code to encrypt a query string. An encrypted query string contained an "=" sign which caused the decryption to fail. Is there a way to limit the character set to say just alphanumeric with no punctuation symbols?
AnswerRe: Character sets Pin
glennswest6-Oct-11 23:48
glennswest6-Oct-11 23:48 
GeneralI want to use my code for encrypt Pin
Mayur Gujrathiii26-May-11 22:00
Mayur Gujrathiii26-May-11 22:00 
QuestionENCRYPT AND DECRYPT HELP Pin
rsdelrosario28-Jul-10 22:58
rsdelrosario28-Jul-10 22:58 
QuestionRe: ENCRYPT AND DECRYPT HELP Pin
rsdelrosario28-Jul-10 23:04
rsdelrosario28-Jul-10 23:04 
GeneralHELPPPPPPPPPPPPPP Pin
barbiez23-May-10 8:14
barbiez23-May-10 8:14 
GeneralRe: HELPPPPPPPPPPPPPP Pin
Lovely M23-May-10 18:14
Lovely M23-May-10 18:14 
GeneralThanks Pin
Mushtaque Nizamani7-May-09 20:20
Mushtaque Nizamani7-May-09 20:20 
GeneralRe: Thanks Pin
Lovely M7-May-09 21:48
Lovely M7-May-09 21:48 
AnswerRe: qusetuion Pin
Lovely M21-Dec-08 17:53
Lovely M21-Dec-08 17:53 
GeneralString reference not set to an instance of String Pin
Asanda8-Sep-08 1:48
Asanda8-Sep-08 1:48 
GeneralRe: String reference not set to an instance of String Pin
Lovely M8-Sep-08 18:37
Lovely M8-Sep-08 18:37 
GeneralRe: String reference not set to an instance of String Pin
Asanda9-Sep-08 2:46
Asanda9-Sep-08 2:46 
GeneralRe: String reference not set to an instance of String Pin
Lovely M9-Sep-08 18:35
Lovely M9-Sep-08 18:35 
GeneralThanks! Thank You! And More Thanks! Pin
microbus22-Jul-08 11:13
microbus22-Jul-08 11:13 
GeneralThanks a lot Pin
Abhi suryawanshi4-Jul-08 21:35
Abhi suryawanshi4-Jul-08 21:35 
QuestionInvalid length for a Base-64 char array. Pin
moistllama20-Mar-08 4:30
moistllama20-Mar-08 4:30 
AnswerRe: Invalid length for a Base-64 char array. Pin
Amar Chaudhary29-Apr-08 20:34
Amar Chaudhary29-Apr-08 20:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.