implemented json file safe and dynamic master password

This commit is contained in:
2022-12-09 14:52:57 +01:00
parent ee4177a01a
commit f5e290df65
4 changed files with 39 additions and 9 deletions

View File

@@ -3,6 +3,9 @@ class Cleanup(AbstractSplittedSecret):
def __init__(self):
super(Cleanup, self).__init__()
def deleteAllEncryptedFiles(self):
self.executeCommand('rm -v ' + self.decrypted_password_files_folder + '*')
print(self.getCommandString())
print(self.getOutputString())
self.executeCommand('rm -v ' + self.encrypted_splitted_password_files_folder + '*')
print(self.getCommandString())
print(self.getOutputString())