コード例 #1
0
        private void button3_Click(object sender, EventArgs e)
        {
            StringCryptography sTR = new StringCryptography();

            createLogs.logs(textBox3.Text + "Decrypted to " + textBox4.Text);
            textBox4.Text = sTR.decryptor(textBox3.Text);
        }
コード例 #2
0
        private void button2_Click(object sender, EventArgs e)
        {
            StringCryptography sTR = new StringCryptography();

            createLogs.logs(textBox1.Text + "Encrypted to " + textBox2.Text);
            textBox2.Text = sTR.enryptor(textBox1.Text);
        }