我有一个关于使用 gpg 非对称解密的问题。我使用 duplicity 非对称加密副本。
例如:
`Duplicati.CommandLine.exe backup s3://testduplicatigpg3 C:\Users\test\Desktop\tt --aws_access_key_id=AWS_ACCESS_KEY_ID --aws_secret_access_key=AWS_SECRET_ACCESS_KEY --encryption-module=gpg --gpg-encryption-command="--encrypt" --passphrase=test --gpg-encryption-switches="-r ID_KEY"`
我使用以下方法恢复:
Duplicati.CommandLine.exe restore s3://testduplicatigpg3 --restore-path=C:\Users\test\Desktop\restore --aws_access_key_id=AWS_ACCESS_KEY_ID --aws_secret_access_key=AWS_SECRET_ACCESS_KEY --encryption-module=gpg --gpg-decryption-command="--decrypt" --passphrase=test
我能否以某种方式强制 Duplicity 要求私钥和密码来恢复文件。例如,使用 gpg,删除私钥后我无法解密文件。
我得出结论,尽管 duplicity 会对称加密我的所有文件。尽管我希望有非对称加密的选项。
有人可以提供在 Duplicati 中使用非对称加密的有效例子吗?