private void button2_Click(object sender, EventArgs e) { AESEnc enc = new AESEnc(); textBox3.Text = enc.AESDecrypt256(textBox2.Text); }
private void button1_Click_1(object sender, EventArgs e) { AESEnc enc = new AESEnc(); textBox2.Text = enc.AESEncrypt256(textBox1.Text); }