Example #1
0
File: Form1.cs Project: Core130/jr
        private void button1_Click(object sender, EventArgs e)
        {
            string str = DefineEncryptDecrypt.Encrypt(this.txtInput.Text.Trim());

            this.txtOutput.Text = str;
        }
Example #2
0
        public string Encrypt(string plaintext)
        {
            string str = DefineEncryptDecrypt.Encrypt(plaintext);

            return(str);
        }