Beispiel #1
0
 public Form2()
 {
     //myCipher = new CaesarCipher();
     myCipher = new VigenereCipher();
     InitializeComponent();
     MessageBox.Show("Vigenere cipher is a method of encrypting alphabetic text by using a series of interwoven Caesar ciphers, based on the letters of a keyword. It employs a form of polyalphabetic substitution.");
 }
Beispiel #2
0
        public Form1()
        {
            myCipher = new CaeserCipher();
            //myCipher = new MyCipher();

            InitializeComponent();
        }
Beispiel #3
0
 public Form1()
 {
     myCipher = new CaesarCipher();
     //myCipher = new VigenereCipher(txtb_UncipheredText.Text, "hitler");
     InitializeComponent();
     MessageBox.Show("Caesar cipher (or Caesar code) is a shift cipher, one of the most easy and most famous encryption systems. It uses the substitution of a letter by another one further in the alphabet");
 }
Beispiel #4
0
 public Form3()
 {
     myCipher = new VernamCipher();
     InitializeComponent();
     MessageBox.Show("Vernam cipher is, in theory, a perfect cipher. Instead of a single key, each plaintext character is encrypted using its own key");
 }