diff options
author | Werner Koch <[email protected]> | 2016-09-07 07:26:11 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2016-09-07 07:26:11 +0000 |
commit | 120b14783c0312d782dc08ce4949a6209d5ccc7b (patch) | |
tree | 6cbd39d10a102aed9ce9b46e0e1d34c05909489e /lang/cpp/src/tofuinfo.h | |
parent | tests: Set passphrase cb in t-encrypt-mixed (diff) | |
download | gpgme-120b14783c0312d782dc08ce4949a6209d5ccc7b.tar.gz gpgme-120b14783c0312d782dc08ce4949a6209d5ccc7b.zip |
core,cpp: Extend the TOFU information.
* src/gpgme.h.in (struct _gpeme_tofu_info): Rename FIRSTSEEN to
SIGNFIRST and LASTSEEN to SIGNLAST. Add ENCRFIST and ENCRLAST.
* src/keylist.c (parse_tfs_record): Parse to ENCRFIRST and ENCRLAST.
* src/verify.c (parse_tofu_stats): Ditto.
* tests/run-keylist.c (main): Adjust and print encrypt stats.
* tests/run-verify.c (print_result): Ditto.
* lang/cpp/src/tofuinfo.h (TofuInfo): Rename firstSeen to signFirst
and lastSeen to signLast. Add encrCount, encrFirst and encrLast.
* lang/cpp/src/tofuinfo.cpp (encrCount, encrFirst, encrLast): New.
--
The latest GnuPG commits have the needed changes but we also allow the
use of currently released GnuPG version.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'lang/cpp/src/tofuinfo.h')
-rw-r--r-- | lang/cpp/src/tofuinfo.h | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/lang/cpp/src/tofuinfo.h b/lang/cpp/src/tofuinfo.h index eb5dbcc5..ec253e96 100644 --- a/lang/cpp/src/tofuinfo.h +++ b/lang/cpp/src/tofuinfo.h @@ -93,11 +93,20 @@ public: /* Number of signatures seen for this binding. Capped at USHRT_MAX. */ unsigned short signCount() const; + /* Number of encryption done to this binding. Capped at USHRT_MAX. */ + unsigned short encrCount() const; + /** Number of seconds since epoch when the first message was verified */ - unsigned long firstSeen() const; + unsigned long signFirst() const; /** Number of seconds since epoch when the last message was verified */ - unsigned long lastSeen() const; + unsigned long signLast() const; + + /** Number of seconds since epoch when the first message was encrypted */ + unsigned long encrFirst() const; + + /** Number of seconds since epoch when the last message was encrypted */ + unsigned long encrLast() const; /* If non-NULL a human readable string summarizing the TOFU data. */ const char *description() const; |