Delete unused gen. public key

This commit is contained in:
Matthew Wong 2015-12-26 02:19:12 -05:00
parent 406d6c0425
commit 9684c6c8a1

View file

@ -367,6 +367,11 @@ public class UserPreference extends AppCompatActivity {
SharedPreferences.Editor editor = prefs.edit();
editor.putBoolean("use_generated_key", false);
editor.apply();
//delete the public key from generation
File file = new File(getFilesDir() + "/.ssh_key.pub");
file.delete();
setResult(RESULT_OK);
finish();
} catch (IOException e) {