private void FindKeyFile_Click(object sender, EventArgs e) { if (FileOP.SelectKeyFile()) { KeyfileLocation.Text = FileOP.GetKeyFile(); } }
private void button1_Click(object sender, EventArgs e) { FileOP.SelectKeyFile(); Crypto.EncryptFile(FileOP.GetFile(), FileOP.KeyFileToBits(FileOP.GetKeyFile())); FileOP.ClearKeyFile(); MasterForm frm = new MasterForm(); frm.Show(); frm.PerformRefresh(); this.Close(); }
private void FindKeyFile_Click(object sender, EventArgs e) { FileOP.SelectKeyFile(); KeyFileLocationText.Text = FileOP.GetKeyFile(); }