aboutsummaryrefslogtreecommitdiffstats
path: root/lang/cpp/src/context.cpp
diff options
context:
space:
mode:
authorIngo Klöcker <[email protected]>2023-01-26 10:59:50 +0000
committerIngo Klöcker <[email protected]>2023-01-26 11:01:28 +0000
commit3e31f648e513bed0029b09104d416d25fca08868 (patch)
tree68bd769a45c75a8623601b6f6b6dd6a71f662535 /lang/cpp/src/context.cpp
parentcpp: Pass ThrowKeyIds and EncryptWrap flags to GpgME (diff)
downloadgpgme-3e31f648e513bed0029b09104d416d25fca08868.tar.gz
gpgme-3e31f648e513bed0029b09104d416d25fca08868.zip
cpp: Support all encryption flags
* lang/cpp/src/context.h (WantAddress): New flag. * lang/cpp/src/context.cpp (encryptflags2encryptflags): Convert WantAddress to corresponding gpgme encrypt flags. (operator<<): Add new flag to debug stream. -- GnuPG-bug-id: 6359
Diffstat (limited to 'lang/cpp/src/context.cpp')
-rw-r--r--lang/cpp/src/context.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/lang/cpp/src/context.cpp b/lang/cpp/src/context.cpp
index d071c91c..120c7c70 100644
--- a/lang/cpp/src/context.cpp
+++ b/lang/cpp/src/context.cpp
@@ -1341,6 +1341,9 @@ static gpgme_encrypt_flags_t encryptflags2encryptflags(Context::EncryptionFlags
if (flags & Context::EncryptWrap) {
result |= GPGME_ENCRYPT_WRAP;
}
+ if (flags & Context::WantAddress) {
+ result |= GPGME_ENCRYPT_WANT_ADDRESS;
+ }
return static_cast<gpgme_encrypt_flags_t>(result);
}
@@ -1917,6 +1920,7 @@ std::ostream &operator<<(std::ostream &os, Context::EncryptionFlags flags)
CHECK(Symmetric);
CHECK(ThrowKeyIds);
CHECK(EncryptWrap);
+ CHECK(WantAddress);
#undef CHECK
return os << ')';
}