In between commit implementation of main data encryption

This commit is contained in:
2022-12-10 20:19:26 +01:00
parent a00550e0b6
commit 2b3e4932c2
11 changed files with 25 additions and 12 deletions

View File

@@ -110,4 +110,8 @@ class Decryption(AbstractSplittedSecret):
def decryptAccumulatedFile(self):
input_file_path = self.getAccumulatedFilePath(AbstractSplittedSecret.TYPE_ENCRYPTED)
output_file_path = self.getAccumulatedFilePath(AbstractSplittedSecret.TYPE_DECRYPTED)
self.decryptFile(self.user_password, input_file_path, output_file_path)
self.decryptFile(self.user_password, input_file_path, output_file_path)
def decryptMainData(self):
# gpg --batch --passphrase "helloworld" -d data/encrypted/main_data.tar.gz.gpg | tar -xvzf -
pass