diff options
author | Justus Winter <justus@g10code.com> | 2016-04-04 17:05:50 +0200 |
---|---|---|
committer | Justus Winter <justus@g10code.com> | 2016-04-04 17:53:03 +0200 |
commit | abb352de51bc964c06007fce43ed6f6caea87c15 (patch) | |
tree | 2086813d191c3387e1cf295adcfa7a85ae0a261d /g10/Makefile.am | |
parent | tests: Fix default key test. (diff) | |
download | gnupg2-abb352de51bc964c06007fce43ed6f6caea87c15.tar.xz gnupg2-abb352de51bc964c06007fce43ed6f6caea87c15.zip |
g10: Support armored keyrings in gpgv.
* doc/gpgv.texi: Document the feature.
* g10/Makefile.am (gpgv2_SOURCES): Add dearmor.c.
* g10/dearmor.c (dearmor_file): Add sink argument.
* g10/gpg.c (main): Adapt accordingly.
* g10/gpgv.c (make_temp_dir): New function.
(main): De-armor keyrings.
* g10/main.h (dearmor_file): Adapt prototype.
GnuPG-bug-id: 2290
Signed-off-by: Justus Winter <justus@g10code.com>
Diffstat (limited to 'g10/Makefile.am')
-rw-r--r-- | g10/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/g10/Makefile.am b/g10/Makefile.am index 473a3ac99..a30bc01da 100644 --- a/g10/Makefile.am +++ b/g10/Makefile.am @@ -140,7 +140,8 @@ gpg2_SOURCES = gpg.c \ gpgcompose_SOURCES = gpgcompose.c $(gpg_sources) gpgv2_SOURCES = gpgv.c \ $(common_source) \ - verify.c + verify.c \ + dearmor.c #gpgd_SOURCES = gpgd.c \ # ks-proto.h \ |