Click here to Skip to main content
15,885,198 members
Articles / Web Development / ASP.NET
Tip/Trick

Encryption/Decryption for the Beginner's Level

Rate me:
Please Sign up or sign in to vote.
1.92/5 (4 votes)
21 Mar 2014CPOL 22.2K   7   18
Focuses on beginner's level Encryption

Introduction

It often comes to the task list for the College/University level students that they have to store passwords, pass the Query String with URL or other stuff in the Encrypted way. So this trick would focus on the same to provide an easy to understand way of performing this task with minimal time and effort.

Using the Code

I have been doing some coding tasks, when this thing comes into my play, and after searching on GOOGLE, I found the following methods for both Encryption and Decryption.

Hence, I am sharing here for others to get the tasks done in an understandable way.

First of All, I would be telling about the namespaces that are to be included for this.

NameSpaces

C#
using System.Security.Cryptography.X509Certificates;
using System.Net.Security;
using System.IO;
using System.Security.Cryptography; 

Encryption

C#
private string Encrypt(string clearText)
   {
       string EncryptionKey = "KEY"; // See NOTE at end of TIP
       byte[] clearBytes = Encoding.Unicode.GetBytes(clearText);
       using (Aes encryptor = Aes.Create())
       {
           Rfc2898DeriveBytes pdb = new Rfc2898DeriveBytes(EncryptionKey, new byte[]
           { 0x49, 0x76, 0x61, 0x6e, 0x20, 0x4d, 0x65, 0x64, 0x76, 0x65, 0x64, 0x65, 0x76 });
           encryptor.Key = pdb.GetBytes(32);
           encryptor.IV = pdb.GetBytes(16);
           using (MemoryStream ms = new MemoryStream())
           {
               using (CryptoStream cs = new CryptoStream(ms, encryptor.CreateEncryptor(), CryptoStreamMode.Write))
               {
                   cs.Write(clearBytes, 0, clearBytes.Length);
                   cs.Close();
               }
               clearText = Convert.ToBase64String(ms.ToArray());
           }
       }
       return clearText;
   }

Decryption

C#
private string Decrypt(string cipherText)
    {
        string EncryptionKey = "KEY"; //See Note at the End of TIP
        cipherText = cipherText.Replace(" ", "+");
        byte[] cipherBytes = Convert.FromBase64String(cipherText);
        using (Aes encryptor = Aes.Create())
        {
            Rfc2898DeriveBytes pdb = new Rfc2898DeriveBytes(EncryptionKey, new byte[] 
            { 0x49, 0x76, 0x61, 0x6e, 0x20, 0x4d, 0x65, 0x64, 0x76, 0x65, 0x64, 0x65, 0x76 });
            encryptor.Key = pdb.GetBytes(32);
            encryptor.IV = pdb.GetBytes(16);
            using (MemoryStream ms = new MemoryStream())
            {
                using (CryptoStream cs = new CryptoStream(ms, encryptor.CreateDecryptor(), CryptoStreamMode.Write))
                {
                    cs.Write(cipherBytes, 0, cipherBytes.Length);
                    cs.Close();
                }
                cipherText = Encoding.Unicode.GetString(ms.ToArray());
            }
        }
        return cipherText;
    } 

NOTE: In place of KEY, you have to provide the key, based on which both Encryption and Decryption will be done. So, the same key would be provided in both methods.

Points of Interest

While I was performing this tip myself, it taught me about the way encryption and decryption works and how they can be implemented in web application.

Comments, positive criticism and advice are heartily welcome. :)

License

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


Written By
Software Developer
Pakistan Pakistan
Working as an Associate Software Engineer in LMKT


Visit My Blog!

Contact Me!

Comments and Discussions

 
GeneralMy vote of 1 Pin
Member 13192321-Mar-14 3:52
Member 13192321-Mar-14 3:52 
GeneralRe: My vote of 1 Pin
VICK26-Mar-14 21:22
professional VICK26-Mar-14 21:22 
GeneralMy vote of 1 Pin
OriginalGriff20-Mar-14 22:39
mveOriginalGriff20-Mar-14 22:39 
GeneralRe: My vote of 1 Pin
VICK20-Mar-14 22:49
professional VICK20-Mar-14 22:49 
GeneralRe: My vote of 1 Pin
OriginalGriff20-Mar-14 23:10
mveOriginalGriff20-Mar-14 23:10 
GeneralRe: My vote of 1 Pin
VICK20-Mar-14 23:33
professional VICK20-Mar-14 23:33 
GeneralRe: My vote of 1 Pin
Manfred Rudolf Bihy20-Mar-14 23:52
professionalManfred Rudolf Bihy20-Mar-14 23:52 
GeneralRe: My vote of 1 Pin
OriginalGriff21-Mar-14 0:02
mveOriginalGriff21-Mar-14 0:02 
QuestionDownload Source Pin
Amir Mohammad Nasrollahi20-Mar-14 20:39
Amir Mohammad Nasrollahi20-Mar-14 20:39 
Everything seems OK but i prefer you to put Download links for source of a sample project.
Because your audiences are beginners, experience shows that they want Downloadable samples more than every thing.
just a suggestion Smile | :) Wink | ;)
GeneralRe: Download Source Pin
VICK20-Mar-14 21:22
professional VICK20-Mar-14 21:22 
QuestionMIT? Pin
Ravi Bhavnani20-Mar-14 10:36
professionalRavi Bhavnani20-Mar-14 10:36 
AnswerRe: MIT? Pin
VICK20-Mar-14 18:54
professional VICK20-Mar-14 18:54 
QuestionThis has been here over and over Pin
Kees van Spelde20-Mar-14 4:20
professionalKees van Spelde20-Mar-14 4:20 
AnswerRe: This has been here over and over Pin
VICK20-Mar-14 18:56
professional VICK20-Mar-14 18:56 
QuestionSalt ? Pin
Rage20-Mar-14 2:47
professionalRage20-Mar-14 2:47 
GeneralRe: Salt ? Pin
VICK20-Mar-14 18:53
professional VICK20-Mar-14 18:53 
GeneralRe: Salt ? Pin
CS201120-Mar-14 23:04
professionalCS201120-Mar-14 23:04 
GeneralRe: Salt ? Pin
VICK20-Mar-14 23:34
professional VICK20-Mar-14 23: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.