c# built in encryption code example
Example: encrypt in C#
using System;
using System.IO;
using System.Security.Cryptography;
class Class1
{
static void Main(string[] args)
{
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
{
FileStream myStream = new FileStream("TestData.txt", FileMode.Open);
Aes aes = Aes.Create();
CryptoStream cryptStream = new CryptoStream(
myStream,
aes.CreateDecryptor(key, iv),
CryptoStreamMode.Read);
StreamReader sReader = new StreamReader(cryptStream);
Console.WriteLine("The decrypted original message: {0}", sReader.ReadToEnd());
sReader.Close();
myStream.Close();
}
catch
{
Console.WriteLine("The decryption failed.");
throw;
}
}
}