private void fromTextBoxToolStripMenuItem_Click(object sender, EventArgs e) { XORParams frm = new XORParams(false); frm.ShowDialog(); string Key = frm.GetSecretKey(); if (Key.Length == 0) { return; } textBox2.Text = Shifrator.XOR(textBox1.Text, Key); }
private void fromFileToolStripMenuItem_Click(object sender, EventArgs e) { if (openFileDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK) { XORParams frm = new XORParams(false); frm.ShowDialog(); string Key = frm.GetSecretKey(); if (Key.Length == 0) { return; } using (StreamReader rdr = new StreamReader(openFileDialog1.FileName)) { textBox2.Text = Shifrator.XOR(rdr.ReadToEnd(), Key); } } }