Esempio n. 1
0
        static void Main(string[] args)
        {
            Write("Enter a message to encrypt : ");
            string message = ReadLine();

            Write("Enter a password : "******"Encrypted text : {cryptoText}");
            Write("Enter a password : "******"Decrypted text {clearText}");
            }
            catch (Exception ex)
            {
                WriteLine("Something went wrong");
            }
        }