aboutsummaryrefslogtreecommitdiffstats
path: root/lang/cpp/src/context.cpp
diff options
context:
space:
mode:
authorIngo Klöcker <[email protected]>2023-01-27 08:40:05 +0000
committerIngo Klöcker <[email protected]>2023-01-27 11:16:02 +0000
commitd28ea8c6b3db008150e2bae99a33e30b55c4bc10 (patch)
tree284470de124702bf6478bd165a13d56eed7d125c /lang/cpp/src/context.cpp
parentcpp: Add convenience overload to set file name (diff)
downloadgpgme-d28ea8c6b3db008150e2bae99a33e30b55c4bc10.tar.gz
gpgme-d28ea8c6b3db008150e2bae99a33e30b55c4bc10.zip
cpp: Support new archive encryption flag
* lang/cpp/src/context.h (EncryptArchive): New flag. * lang/cpp/src/context.cpp (encryptflags2encryptflags): Convert EncryptArchive to corresponding gpgme encrypt flags. (operator<<): Add new flag to debug stream. -- GnuPG-bug-id: 6342
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 dba958cf..f7f6f54d 100644
--- a/lang/cpp/src/context.cpp
+++ b/lang/cpp/src/context.cpp
@@ -1335,6 +1335,9 @@ static gpgme_encrypt_flags_t encryptflags2encryptflags(Context::EncryptionFlags
if (flags & Context::Symmetric) {
result |= GPGME_ENCRYPT_SYMMETRIC;
}
+ if (flags & Context::EncryptArchive) {
+ result |= GPGME_ENCRYPT_ARCHIVE;
+ }
return static_cast<gpgme_encrypt_flags_t>(result);
}
@@ -1909,6 +1912,7 @@ std::ostream &operator<<(std::ostream &os, Context::EncryptionFlags flags)
CHECK(ExpectSign);
CHECK(NoCompress);
CHECK(Symmetric);
+ CHECK(EncryptArchive);
#undef CHECK
return os << ')';
}