Delete unused gen. public key
This commit is contained in:
parent
406d6c0425
commit
9684c6c8a1
1 changed files with 5 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue