Пример #1
0
        protected void bttn_decrypt_Click(object sender, EventArgs e)
        {
            EncryptionDecryption myDecrypter = new EncryptionDecryption();
            string result = myDecrypter.Decryption(txt_decrypt.Text);

            lbl_decryptResults.Text = result;
        }