diff options
author | Andre Heinecke <[email protected]> | 2016-08-23 14:40:21 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2016-08-23 14:44:17 +0000 |
commit | 799b168243e6499ac01bf59e0656547f353a2589 (patch) | |
tree | ed18151952d2f48975a51bf03bef4ddc55724e5e /lang/cpp/src/verificationresult.h | |
parent | core: Put the protocol into a TOFU created key object. (diff) | |
download | gpgme-799b168243e6499ac01bf59e0656547f353a2589.tar.gz gpgme-799b168243e6499ac01bf59e0656547f353a2589.zip |
Cpp: Move tofuinfo from signature to userid
* lang/cpp/src/key.cpp (UserID::tofuInfo): New.
* lang/cpp/src/key.h: Update accordingly.
* lang/cpp/src/tofuinfo.cpp: Remove dropped fields.
* lang/cpp/src/tofuinfo.h: Update accordingly.
* lang/cpp/src/verificationresult.cpp,
lang/cpp/src/verificationresult.h: Remove tofu info.
* lang/qt/tests/t-tofuinfo.cpp: Disable for now.
--
With be4ff75d7 Tofu info now lives with a UserID
Object. While this breaks API it was not yet released.
Diffstat (limited to 'lang/cpp/src/verificationresult.h')
-rw-r--r-- | lang/cpp/src/verificationresult.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lang/cpp/src/verificationresult.h b/lang/cpp/src/verificationresult.h index f5fbc2ec..3394a474 100644 --- a/lang/cpp/src/verificationresult.h +++ b/lang/cpp/src/verificationresult.h @@ -40,7 +40,6 @@ namespace GpgME class Error; class Signature; class Notation; -class TofuInfo; class GPGMEPP_EXPORT VerificationResult : public Result { @@ -158,18 +157,6 @@ public: GpgME::Notation notation(unsigned int index) const; std::vector<GpgME::Notation> notations() const; - /** List of TOFU stats for this signature. - * - * For each UserID of the key used to create this - * signature a tofu entry is returned. - * - * Warning: Addresses can be ambigous if there are multiple UserID's - * with the same mailbox in a key. - * - * @returns The list of TOFU stats. - */ - std::vector<GpgME::TofuInfo> tofuInfo() const; - private: std::shared_ptr<VerificationResult::Private> d; unsigned int idx; |