From 7c5a4974b71c30e824cbfcb3a0a70064e5ed5adb Mon Sep 17 00:00:00 2001 From: Andre Heinecke Date: Wed, 24 Aug 2016 13:59:37 +0200 Subject: Cpp: Add Key to signature * lang/cpp/src/verificationresult.cpp, lang/cpp/src/verificationresult.h (Signature::key): New. --- lang/cpp/src/verificationresult.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'lang/cpp/src/verificationresult.cpp') diff --git a/lang/cpp/src/verificationresult.cpp b/lang/cpp/src/verificationresult.cpp index c32c8964..c62625d1 100644 --- a/lang/cpp/src/verificationresult.cpp +++ b/lang/cpp/src/verificationresult.cpp @@ -24,6 +24,7 @@ #include #include "result_p.h" #include "util.h" +#include "key.h" #include @@ -64,6 +65,10 @@ public: # endif scopy->next = 0; sigs.push_back(scopy); + // copy keys + if (scopy->key) { + keys.push_back(Key(scopy->key, true)); + } // copy notations: nota.push_back(std::vector()); purls.push_back(0); @@ -107,6 +112,7 @@ public: std::vector sigs; std::vector< std::vector > nota; + std::vector keys; std::vector purls; std::string file_name; }; @@ -366,6 +372,14 @@ std::vector GpgME::Signature::notations() const return result; } +GpgME::Key GpgME::Signature::key() const +{ + if (isNull()) { + return Key(); + } + return d->keys[idx]; +} + class GpgME::Notation::Private { public: -- cgit v1.2.3