Exemple #1
0
 private void Decryption()
 {
     decryption = CBC.Decryption(encryption, iv);
     foreach (string s in decryption)
     {
         textBox6.Text += s;
     }
 }
Exemple #2
0
 private void Encryption()
 {
     encryption = CBC.Encryption(plainbinary, iv);
     foreach (string a in encryption)
     {
         textBox4.Text += a;
         textBox7.Text += a;
     }
 }