diff options
| author | Ingo Klöcker <[email protected]> | 2024-08-06 13:32:20 +0000 | 
|---|---|---|
| committer | Ingo Klöcker <[email protected]> | 2024-08-06 15:56:43 +0000 | 
| commit | d5f612e9685d18313d445799a19ff83e013f1b0a (patch) | |
| tree | 3f71490833fe5fbfc7aedd375f1ff0d6201cae32 /lang/cpp/src/context.cpp | |
| parent | core: New function gpgme_op_setownertrust (diff) | |
| download | gpgme-d5f612e9685d18313d445799a19ff83e013f1b0a.tar.gz gpgme-d5f612e9685d18313d445799a19ff83e013f1b0a.zip | |
cpp: Add support for setting owner trust and for disabling keys
* lang/cpp/src/context.cpp, lang/cpp/src/context.h (class Context): Add
member functions setOwnerTrust, startSetOwnerTrust, setKeyEnabled,
startSetKeyEnabled.
* lang/cpp/src/context.cpp (owner_trust_to_string): New.
--
GnuPG-bug-id: 7239
Diffstat (limited to '')
| -rw-r--r-- | lang/cpp/src/context.cpp | 45 | 
1 files changed, 45 insertions, 0 deletions
| diff --git a/lang/cpp/src/context.cpp b/lang/cpp/src/context.cpp index 8150d08b..7a0fb23f 100644 --- a/lang/cpp/src/context.cpp +++ b/lang/cpp/src/context.cpp @@ -1767,6 +1767,51 @@ Error Context::startSetExpire(const Key &k, unsigned long expires,                   k.impl(), expires, subfprs.c_str(), 0));  } +static const char *owner_trust_to_string(Key::OwnerTrust trust) +{ +    static const char *const owner_trust_strings[] = { +        "undefined", // --quick-set-ownertrust wants "undefined" for Unknown +        "undefined", // Undefined is never used for key->owner_trust +        "never", +        "marginal", +        "full", +        "ultimate", +    }; + +    if (Key::OwnerTrust::Unknown <= trust && trust <= Key::OwnerTrust::Ultimate) { +        return owner_trust_strings[trust]; +    } +    return nullptr; +} + +Error Context::setOwnerTrust(const Key &key, Key::OwnerTrust trust) +{ +    d->lasterr = gpgme_op_setownertrust(d->ctx, key.impl(), +                                        owner_trust_to_string(trust)); +    return Error(d->lasterr); +} + +Error Context::startSetOwnerTrust(const Key &key, Key::OwnerTrust trust) +{ +    d->lasterr = gpgme_op_setownertrust_start(d->ctx, key.impl(), +                                              owner_trust_to_string(trust)); +    return Error(d->lasterr); +} + +Error Context::setKeyEnabled(const Key &key, bool enabled) +{ +    d->lasterr = gpgme_op_setownertrust(d->ctx, key.impl(), +                                        enabled ? "enable" : "disable"); +    return Error(d->lasterr); +} + +Error Context::startSetKeyEnabled(const Key &key, bool enabled) +{ +    d->lasterr = gpgme_op_setownertrust_start(d->ctx, key.impl(), +                                              enabled ? "enable" : "disable"); +    return Error(d->lasterr); +} +  static std::string getLFSeparatedListOfUserIds(const std::vector<UserID> &userIds)  {      if (userIds.empty()) { | 
