コード例 #1
0
ファイル: Form1.cs プロジェクト: radtek/shi5588
        private void button2_Click(object sender, EventArgs e)
        {
            //
            RMCrypt rm = new RMCrypt(this.textBox4.Text);

            this.textBox3.Text = rm.Decrypt(this.textBox2.Text);
        }
コード例 #2
0
ファイル: Form1.cs プロジェクト: radtek/shi5588
        private void button3_Click(object sender, EventArgs e)
        {
            RMCrypt rm = new RMCrypt();

            this.textBox2.Text = rm.Encrypt(this.textBox1.Text);
        }
コード例 #3
0
ファイル: Form1.cs プロジェクト: shi5588/shi5588
 private void button4_Click(object sender, EventArgs e)
 {
     RMCrypt rm = new RMCrypt();
     this.textBox3.Text = rm.Decrypt(this.textBox2.Text);
 }
コード例 #4
0
ファイル: Form1.cs プロジェクト: shi5588/shi5588
 private void button1_Click(object sender, EventArgs e)
 {
     //
     RMCrypt rm = new RMCrypt(this.textBox4.Text);
     this.textBox2.Text = rm.Encrypt(this.textBox1.Text);
 }