diff options
author | Andre Heinecke <[email protected]> | 2017-01-11 15:14:45 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2017-01-11 15:14:45 +0000 |
commit | e416f9961837039f259558edf41fccbc181ad128 (patch) | |
tree | cda46bb7f429259f65dc11af864f23922f4785c1 /NEWS | |
parent | Fix Qgpgme build for macos (diff) | |
download | gpgme-e416f9961837039f259558edf41fccbc181ad128.tar.gz gpgme-e416f9961837039f259558edf41fccbc181ad128.zip |
cpp: Add revuid and adduid support
* lang/cpp/src/context.cpp
(Context::revUid, Context::startRevUid),
(Context::addUid, Context::startAddUid): New.
* lang/cpp/src/context.h: Declare new functions.
* lang/cpp/src/key.cpp (Key::UserID::revoke)
(Key::addUid): Idomatic helpers.
lang/cpp/src/key.h: Declare new functions.
* NEWS: Update accordingly.
Diffstat (limited to '')
-rw-r--r-- | NEWS | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -1,6 +1,17 @@ Noteworthy changes in version 1.8.1 (unreleased) ------------------------------------------------ + * cpp: Support for adduid and revuid operations. + + * Interface changes relative to the 1.8.0 release: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + cpp: Context::revUid(const Key&, const char*) NEW. + cpp: Context::startRevUid(const Key&, const char*) NEW. + cpp: Context::addUid(const Key&, const char*) NEW. + cpp: Context::startAddUid(const Key&, const char*) NEW. + cpp: Key::UserID::revoke() NEW. + cpp: Key::addUid() NEW. + Noteworthy changes in version 1.8.0 (2016-11-16) ------------------------------------------------ |