Encryption and Decryption in ASP.NET Windows Console Application using C#

Introduction

In this article, I have explained how to encrypt and decrypt the text using the AES Encryption standard.

Open Visual Studio, Create a new console application.

Home

Provide a project name and choose the location to store the project information, and click next.

Configure New Project

Choose the .Net framework based on your project requirement, then click Create.

Configure new project

Once the project has been created, then Right Click on the project name, choose to add, and click on the new item.

Add the class file to the existing project.

Program

From the C# node, then choose the class definition and provide the class file name like Encrypt and decrypt file.cs.

After we added the class file to our project solution

Configure new project

The class file was created successfully after we wrote the code in the class file.

Program

Use the below code to encrypt the given text input.

  public static string EncryptString(string plainText)
        {
            byte[] array;
            using (Aes aes = Aes.Create())
            {
                aes.Padding = PaddingMode.PKCS7;
                aes.KeySize = 256;
                aes.Key = new byte[32];
                aes.IV = new byte[16];
                aes.Padding = PaddingMode.PKCS7;
                ICryptoTransform encryptor = aes.CreateEncryptor(aes.Key, aes.IV);
                using (MemoryStream memoryStream = new MemoryStream())
                {
                    using (CryptoStream cryptoStream = new CryptoStream((Stream)memoryStream, encryptor, CryptoStreamMode.Write))
                    {
                        using (StreamWriter streamWriter = new StreamWriter((Stream)cryptoStream))
                        {
                            streamWriter.Write(plainText);
                        }
                        array = memoryStream.ToArray();
                    }
                }
            }
            return Convert.ToBase64String(array);
        }

Use the below code to decrypt the given text input.

 public static string DecryptString(string cipherText)
        {
            byte[] buffer = Convert.FromBase64String(cipherText);
            using (Aes aes = Aes.Create())
            {
                aes.Padding = PaddingMode.PKCS7;
                aes.KeySize = 256;
                aes.Key = new byte[32];
                aes.IV = new byte[16];
                ICryptoTransform decryptor = aes.CreateDecryptor(aes.Key, aes.IV);
                using (MemoryStream memoryStream = new MemoryStream(buffer))
                {
                    using (CryptoStream cryptoStream = new CryptoStream((Stream)memoryStream, decryptor, CryptoStreamMode.Read))
                    {
                        using (StreamReader streamReader = new StreamReader((Stream)cryptoStream))
                        {
                            return streamReader.ReadToEnd();
                        }
                    }
                }
            }
        }

Then open the "Program.cs" file to consume the encryption and decryption method.

using System;
using Encrypt__Decrypt__AES_Operation__file;

namespace EncryptionDecryptionUsingSymmetricKey
{
    class Program
    {
        
            public static void Main(string[] args)
            {

                while (true)
                {
                    ProcessEncryptDecrypt();
                }
            }


            public static void ProcessEncryptDecrypt()
            {
                int iChoice = 0;
                string strPwd = string.Empty;
                var encryptedString = string.Empty;
                Console.WriteLine("Enter your choice:");
                Console.WriteLine("1.Decryption   2.Encryption  3.Exit ");
                Console.WriteLine("...............");
                iChoice = Convert.ToInt32(Console.ReadLine());

                if (iChoice == 1)
                {
                    Console.WriteLine("Enter the Password:");
                    strPwd = Convert.ToString(Console.ReadLine());
                    encryptedString = AesOperation.EncryptString(strPwd);
                    Console.WriteLine($"encrypted string : {encryptedString}");


                }
                else if (iChoice == 2)
                {
                    Console.WriteLine("Enter the Password:");
                    strPwd = Convert.ToString(Console.ReadLine());
                    var decryptedString = AesOperation.DecryptString(strPwd);
                    Console.WriteLine($"decrypted string : {decryptedString}");
                }
                else
                {
                    Environment.Exit(0);
                }
            }
        
    }
}

After the successful implementation of the above code, run the application; the output seems like the below screenshot.

Program

Sharing is Caring!


Similar Articles