diff options
author | Andre Heinecke <[email protected]> | 2018-05-22 10:08:01 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2018-05-22 10:08:01 +0000 |
commit | 28e3778ce21069006153bc156a414de6d9347962 (patch) | |
tree | 9a416bca195e7cf2b5d4436230c7b189144b367c /lang/cpp/src/decryptionresult.h | |
parent | core, w32: Add w64 handling for regkeys (diff) | |
download | gpgme-28e3778ce21069006153bc156a414de6d9347962.tar.gz gpgme-28e3778ce21069006153bc156a414de6d9347962.zip |
cpp: Expose sessionKey and symkeyAlgo
* lang/cpp/decryptionresult.cpp, lang/cpp/decryptionresult.h
(DecryptionResult::symkeyAlgo, DecryptionResult::sessionKey): New.
Diffstat (limited to 'lang/cpp/src/decryptionresult.h')
-rw-r--r-- | lang/cpp/src/decryptionresult.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lang/cpp/src/decryptionresult.h b/lang/cpp/src/decryptionresult.h index 57705b48..c270223d 100644 --- a/lang/cpp/src/decryptionresult.h +++ b/lang/cpp/src/decryptionresult.h @@ -77,6 +77,10 @@ public: const char *fileName() const; + const char *sessionKey() const; + + const char *symkeyAlgo() const; + class Recipient; unsigned int numRecipients() const; |