Example #1
0
        private void button2_Click(object sender, EventArgs e)
        {
            //
            RMCrypt rm = new RMCrypt(this.textBox4.Text);

            this.textBox3.Text = rm.Decrypt(this.textBox2.Text);
        }
Example #2
0
        private void button3_Click(object sender, EventArgs e)
        {
            RMCrypt rm = new RMCrypt();

            this.textBox2.Text = rm.Encrypt(this.textBox1.Text);
        }
Example #3
0
 private void button4_Click(object sender, EventArgs e)
 {
     RMCrypt rm = new RMCrypt();
     this.textBox3.Text = rm.Decrypt(this.textBox2.Text);
 }
Example #4
0
 private void button1_Click(object sender, EventArgs e)
 {
     //
     RMCrypt rm = new RMCrypt(this.textBox4.Text);
     this.textBox2.Text = rm.Encrypt(this.textBox1.Text);
 }