"encrypt in C#" Code Answer's

You're definitely familiar with the best coding language C# that developers use to develop their projects and they get all their queries like "encrypt in C#" answered properly. Developers are finding an appropriate answer about encrypt in C# related to the C# coding language. By visiting this online portal developers get answers concerning C# codes question like encrypt in C#. Enter your desired code related query in the search bar and get every piece of information about C# code related question on encrypt in C#. 

encrypt in C#

By Proud ParrotProud Parrot on Oct 07, 2020
using System;
using System.IO;
using System.Security.Cryptography;

class Class1
{
    static void Main(string[] args)
    {
        //The key and IV must be the same values that were used
        //to encrypt the stream.
        byte[] key = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16 };
        byte[] iv = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16 };
        try
        {
            //Create a file stream.
            FileStream myStream = new FileStream("TestData.txt", FileMode.Open);

            //Create a new instance of the default Aes implementation class
            Aes aes = Aes.Create();

            //Create a CryptoStream, pass it the file stream, and decrypt
            //it with the Aes class using the key and IV.
            CryptoStream cryptStream = new CryptoStream(
               myStream,
               aes.CreateDecryptor(key, iv),
               CryptoStreamMode.Read);

            //Read the stream.
            StreamReader sReader = new StreamReader(cryptStream);

            //Display the message.
            Console.WriteLine("The decrypted original message: {0}", sReader.ReadToEnd());

            //Close the streams.
            sReader.Close();
            myStream.Close();
        }
        //Catch any exceptions.
        catch
        {
            Console.WriteLine("The decryption failed.");
            throw;
        }
    }
}

Source: docs.microsoft.com

Add Comment

0

All those coders who are working on the C# based application and are stuck on encrypt in C# can get a collection of related answers to their query. Programmers need to enter their query on encrypt in C# related to C# code and they'll get their ambiguities clear immediately. On our webpage, there are tutorials about encrypt in C# for the programmers working on C# code while coding their module. Coders are also allowed to rectify already present answers of encrypt in C# while working on the C# language code. Developers can add up suggestions if they deem fit any other answer relating to "encrypt in C#". Visit this developer's friendly online web community, CodeProZone, and get your queries like encrypt in C# resolved professionally and stay updated to the latest C# updates. 

C# answers related to "encrypt in C#"

View All C# queries

C# queries related to "encrypt in C#"

Browse Other Code Languages

CodeProZone