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

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