Exemple #1
0
    static void Main(string[] args)
    {
        string strText         = "this is the string";
        string encryptedString = Encrypt_Decrypt.EncryptString(strText);

        Console.WriteLine(encryptedString);
        string decryptedString = Encrypt_Decrypt.DecryptString(encryptedString);

        Console.WriteLine(decryptedString);
        Console.ReadKey();
    }