We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Would adding encryption be useful?
I have an internal fork of this repo that also adds encryption. This basically add a ENCRYPTION_KEY var that you point to a key file.
ENCRYPTION_KEY: Use AES encryption to protect the uploaded file.
Cons:
openssl
Basically it adds yet another step in the backup process.
def encrypt_backup(): out = backup_file + '.aes' cmd("openssl aes-256-cbc -md sha512 -pbkdf2 -iter 100000 -salt -in %s -out %s -pass file:%s" % ( backup_file, out, ENCRYPTION_KEY )) return out
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Would adding encryption be useful?
I have an internal fork of this repo that also adds encryption. This basically add a ENCRYPTION_KEY var that you point to a key file.
ENCRYPTION_KEY: Use AES encryption to protect the uploaded file.
Cons:
openssl
to be installed in DockerfileBasically it adds yet another step in the backup process.
The text was updated successfully, but these errors were encountered: