diff options
author | Justus Winter <[email protected]> | 2015-12-01 11:01:12 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2015-12-04 11:52:40 +0000 |
commit | 582e684a48eb4f3716cecf7dc73eb93046efcfad (patch) | |
tree | cff3e4c97fb5e661a5c44dfb5d0cf7bd8937f26e /tools/gpgtar.c | |
parent | tools/gpgtar: Implement signing. (diff) | |
download | gnupg-582e684a48eb4f3716cecf7dc73eb93046efcfad.tar.gz gnupg-582e684a48eb4f3716cecf7dc73eb93046efcfad.zip |
tools/gpgtar: Implement symmetric encryption.
* tests/openpgp/gpgtar.test: Add test case.
* tools/gpgtar-create.c (gpgtar_create): Pass '--symmetric' flag to
gpg.
* tools/gpgtar.c (parse_arguments): We do handle the argument now.
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to '')
-rw-r--r-- | tools/gpgtar.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/gpgtar.c b/tools/gpgtar.c index 800165462..46d06bd48 100644 --- a/tools/gpgtar.c +++ b/tools/gpgtar.c @@ -322,7 +322,6 @@ parse_arguments (ARGPARSE_ARGS *pargs, ARGPARSE_OPTS *popts) break; case oSymmetric: - log_info ("note: ignoring option --symmetric\n"); set_cmd (&cmd, aEncrypt); opt.symmetric = 1; break; |