diff options
author | Werner Koch <[email protected]> | 2013-02-07 19:59:16 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2013-02-07 19:59:16 +0000 |
commit | 61a0d92b679f248505f1bf16386bc41a5bf2ba1d (patch) | |
tree | 7f3e0358bb4f6004a395a55a2902b27940dcf79e /NEWS | |
parent | Add public function gpgme_io_writen. (diff) | |
download | gpgme-61a0d92b679f248505f1bf16386bc41a5bf2ba1d.tar.gz gpgme-61a0d92b679f248505f1bf16386bc41a5bf2ba1d.zip |
Add public function gpgme_set_pinentry_mode.
* src/gpgme.c (gpgme_set_pinentry_mode): New.
* src/gpgme.h.in (gpgme_pinentry_t): New.
(gpgme_set_pinentry_mode): New.
* src/context.h (struct gpgme_context): Add field pinentry_mode.
* src/engine-backend.h (struct engine_ops): Add field
set_pinentry_mode.
* src/engine-gpg.c (struct engine_gpg): Add field pinentry_mode.
(build_argv): Implement pinentry_mode.
(gpg_set_pinentry_mode): New.
(_gpgme_engine_ops_gpg): Register gpg_set_pinentry_mode.
--
Note that this new fucntion may only be used with gpg 2.1.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -3,7 +3,15 @@ Noteworthy changes in version 1.3.3 (unreleased) * Interface changes relative to the 1.3.1 release: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + gpgme_io_writen NEW. gpgme_set_global_flag NEW. + gpgme_set_pinentry_mode NEW. + gpgme_pinentry_mode_t NEW. + GPGME_PINENTRY_MODE_DEFAULT NEW. + GPGME_PINENTRY_MODE_ASK NEW. + GPGME_PINENTRY_MODE_CANCEL NEW. + GPGME_PINENTRY_MODE_ERROR NEW. + GPGME_PINENTRY_MODE_LOOPBACK NEW. Noteworthy changes in version 1.3.2 (2012-05-02) |