예제 #1
0
 public void ProgressCryptoFile(bool complete_flag, string SHA)
 {
     if (complete_flag)
     {
         support_func.CryptoSupportStopServices(information_about_file, SHA, flag_crypto);
         LoadData();
     }
 }
예제 #2
0
        public void ProgressCryptoFile(bool complete_flag, string SHA)
        {
            if (complete_flag)
            {
                support_func.CryptoSupportStopServices(information_about_file, SHA, true);

                var intentActivity = new Intent(this, typeof(MainActivity));
                intentActivity.PutExtra("id", information_about_file.id_users);
                intentActivity.PutExtra("key", password);
                StartActivity(intentActivity);
                Finish();
            }
        }