aboutsummaryrefslogtreecommitdiffstats
path: root/src/gpg/result_analyse/SignResultAnalyse.cpp
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-06-08 15:18:34 +0000
committerSaturneric <[email protected]>2021-06-08 15:18:34 +0000
commit2df942ceef5ba2dbcc36b0ce820f791900e1e94c (patch)
treed2a4464caef7c55d6ddd95f114382ab2b6b7c1f8 /src/gpg/result_analyse/SignResultAnalyse.cpp
parentAdd encryption and signature function. (diff)
downloadGpgFrontend-2df942ceef5ba2dbcc36b0ce820f791900e1e94c.tar.gz
GpgFrontend-2df942ceef5ba2dbcc36b0ce820f791900e1e94c.zip
Add Some file.
Diffstat (limited to 'src/gpg/result_analyse/SignResultAnalyse.cpp')
-rw-r--r--src/gpg/result_analyse/SignResultAnalyse.cpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/gpg/result_analyse/SignResultAnalyse.cpp b/src/gpg/result_analyse/SignResultAnalyse.cpp
new file mode 100644
index 00000000..51ab5a46
--- /dev/null
+++ b/src/gpg/result_analyse/SignResultAnalyse.cpp
@@ -0,0 +1,35 @@
+/**
+ * This file is part of GPGFrontend.
+ *
+ * GPGFrontend is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * Foobar is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Foobar. If not, see <https://www.gnu.org/licenses/>.
+ *
+ * The initial version of the source code is inherited from gpg4usb-team.
+ * Their source code version also complies with GNU General Public License.
+ *
+ * The source code version of this software was modified and released
+ * by Saturneric<[email protected]> starting on May 12, 2021.
+ *
+ */
+
+#include "gpg/result_analyse/SignResultAnalyse.h"
+
+SignResultAnalyse::SignResultAnalyse(gpgme_sign_result_t result) {
+ stream << "Sign Report: " << Qt::endl;
+
+ auto new_sign = result->signatures;
+
+ while(new_sign != nullptr) {
+
+ }
+}