Esempio n. 1
0
    public static void RunTemplate()
    {
      EncryptionAlgorithm tripleDes = new TripleDESEncryption("A million dollar secret", "!@#$%^&*()");
      tripleDes.EncryptText();

      EncryptionAlgorithm rsa = new RSAEncryption("A million dollar secret", "#secret#");
      rsa.EncryptText();
    }
        public static void RunTemplate()
        {
            EncryptionAlgorithm tripleDes = new TripleDESEncryption("A million dollar secret", "!@#$%^&*()");

            tripleDes.EncryptText();

            EncryptionAlgorithm rsa = new RSAEncryption("A million dollar secret", "#secret#");

            rsa.EncryptText();
        }