Ejemplo n.º 1
0
        private void button2_Click(object sender, EventArgs e)
        {
            AESEnc enc = new AESEnc();

            textBox3.Text = enc.AESDecrypt256(textBox2.Text);
        }
Ejemplo n.º 2
0
        private void button1_Click_1(object sender, EventArgs e)
        {
            AESEnc enc = new AESEnc();

            textBox2.Text = enc.AESEncrypt256(textBox1.Text);
        }