aboutsummaryrefslogtreecommitdiffstats
path: root/lang/cpp/src/key.h
diff options
context:
space:
mode:
authorAndre Heinecke <[email protected]>2019-12-13 17:06:00 +0000
committerAndre Heinecke <[email protected]>2019-12-13 17:06:00 +0000
commit194272dbc3e326cc32c1464bc6fda0c0d10b5559 (patch)
treea89b7d93b3e192a4f548a19ec9b47316ad1277fa /lang/cpp/src/key.h
parentcore: Extend gpgme_user_id_t with uidhash member. (diff)
downloadgpgme-194272dbc3e326cc32c1464bc6fda0c0d10b5559.tar.gz
gpgme-194272dbc3e326cc32c1464bc6fda0c0d10b5559.zip
cpp, qt: Use uidhash to select uids for signing
* lang/cpp/src/gpgsignkeyeditinteractor.cpp (action): Use uidhash instead of number. (GpgSignKeyEditInteractor::setKey): New. * lang/cpp/src/gpgsignkeyeditinteractor.h: Update accordingly. * lang/cpp/src/key.h, lang/cpp/src/key.cpp: Wrap uidhash. * lang/qt/src/qgpgmesignkeyjob.cpp: Set the key. -- Using the uidhash avoids problems when the user ids on --edit-key are different ones then the uids captured by gpgme when listing keys. Or if they are in a different order. This can happen with cached keys or keys with user attributes.
Diffstat (limited to 'lang/cpp/src/key.h')
-rw-r--r--lang/cpp/src/key.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lang/cpp/src/key.h b/lang/cpp/src/key.h
index cf4e9054..fc5e67ee 100644
--- a/lang/cpp/src/key.h
+++ b/lang/cpp/src/key.h
@@ -363,6 +363,7 @@ public:
const char *name() const;
const char *email() const;
const char *comment() const;
+ const char *uidhash() const;
enum Validity { Unknown = 0, Undefined = 1, Never = 2,
Marginal = 3, Full = 4, Ultimate = 5