diff options
author | Werner Koch <[email protected]> | 2011-03-08 11:23:59 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2011-03-08 11:23:59 +0000 |
commit | 327af90594204db9683fcee5c8c6b8098c8da37a (patch) | |
tree | 1ef036bbadb924c19d24c3b75a299c3efa012f95 /g10/call-dirmngr.h | |
parent | Added option --inquire to PRESET_PASSPHRASE. Note that the inquired passphras... (diff) | |
download | gnupg-327af90594204db9683fcee5c8c6b8098c8da37a.tar.gz gnupg-327af90594204db9683fcee5c8c6b8098c8da37a.zip |
Require libgcrypt 1.5
Without Libgcrypt 1.5 is was not possible to use ECC keys. ECC is
major new feature and thus it does not make sense to allow building
with an older Libgcrypt without supporting ECC.
Also fixed a few missing prototypes.
Diffstat (limited to 'g10/call-dirmngr.h')
-rw-r--r-- | g10/call-dirmngr.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/g10/call-dirmngr.h b/g10/call-dirmngr.h index 43636eab4..933303dbf 100644 --- a/g10/call-dirmngr.h +++ b/g10/call-dirmngr.h @@ -25,6 +25,8 @@ gpg_error_t gpg_dirmngr_ks_search (ctrl_t ctrl, const char *searchstr, gpg_error_t (*cb)(void*, char *), void *cb_value); gpg_error_t gpg_dirmngr_ks_get (ctrl_t ctrl, char *pattern[], estream_t *r_fp); +gpg_error_t gpg_dirmngr_ks_fetch (ctrl_t ctrl, + const char *url, estream_t *r_fp); gpg_error_t gpg_dirmngr_ks_put (ctrl_t ctrl, void *data, size_t datalen, kbnode_t keyblock); |