예제 #1
0
 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();
        }
예제 #3
0
 private void FindKeyFile_Click(object sender, EventArgs e)
 {
     FileOP.SelectKeyFile();
     KeyFileLocationText.Text = FileOP.GetKeyFile();
 }