diff options
author | Andre Heinecke <[email protected]> | 2018-06-01 09:08:12 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2018-06-01 09:10:45 +0000 |
commit | 00b027af86f33782933c6200fe1ffe40e85f4346 (patch) | |
tree | c0d58fb4c68de51e85cfcdaebe421550e0fc87a5 /lang/cpp/src | |
parent | cpp: Add legacy_cipher_nomdc (diff) | |
download | gpgme-00b027af86f33782933c6200fe1ffe40e85f4346.tar.gz gpgme-00b027af86f33782933c6200fe1ffe40e85f4346.zip |
cpp: Add gpgme_(get)set_ctx_flag
* NEWS: Mention API extensions.
* lang/cpp/src/context.cpp, lang/cpp/src/context.h
(Context::setFlag, Context::getFlag): New.
Diffstat (limited to '')
-rw-r--r-- | lang/cpp/src/context.cpp | 10 | ||||
-rw-r--r-- | lang/cpp/src/context.h | 4 |
2 files changed, 14 insertions, 0 deletions
diff --git a/lang/cpp/src/context.cpp b/lang/cpp/src/context.cpp index 135e4d56..8fde84a5 100644 --- a/lang/cpp/src/context.cpp +++ b/lang/cpp/src/context.cpp @@ -1478,6 +1478,16 @@ Error Context::startCreateSubkey(const Key &k, const char *algo, k.impl(), algo, reserved, expires, flags)); } +Error Context::setFlag(const char *name, const char *value) +{ + return Error(d->lasterr = gpgme_set_ctx_flag(d->ctx, name, value)); +} + +const char *Context::getFlag(const char *name) const +{ + return gpgme_get_ctx_flag(d->ctx, name); +} + // Engine Spawn stuff Error Context::spawn(const char *file, const char *argv[], Data &input, Data &output, Data &err, diff --git a/lang/cpp/src/context.h b/lang/cpp/src/context.h index aff8e49a..8cccff5c 100644 --- a/lang/cpp/src/context.h +++ b/lang/cpp/src/context.h @@ -86,6 +86,9 @@ public: void setOffline(bool useOfflineMode); bool offline() const; + const char *getFlag(const char *name) const; + Error setFlag(const char *name, const char *value); + enum CertificateInclusion { DefaultCertificates = -256, AllCertificatesExceptRoot = -2, @@ -453,6 +456,7 @@ public: { return d; } + private: // Helper functions that need to be context because they rely // on the "Friendlyness" of context to access the gpgme types. |