aboutsummaryrefslogtreecommitdiffstats
path: root/src/gpg/UID.cpp
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-06-06 19:41:06 +0000
committerSaturneric <[email protected]>2021-06-06 19:41:06 +0000
commit7191b3bb0caf9d74648820b094a8af63f618e8a8 (patch)
treea94bac8131da0128b562f0d874bfbdfa271214c8 /src/gpg/UID.cpp
parentAdjust and improve the detailed interface of the verification information res... (diff)
downloadGpgFrontend-7191b3bb0caf9d74648820b094a8af63f618e8a8.tar.gz
GpgFrontend-7191b3bb0caf9d74648820b094a8af63f618e8a8.zip
Add encryption and signature function.
Adjust and improve the dashboard control. Modify and adjust GpgSignature. Separate Verify result processing code in code structure. Add additional operation toolbar function. Adjust and optimize code structure. Signed-off-by: Saturneric <[email protected]>
Diffstat (limited to 'src/gpg/UID.cpp')
-rw-r--r--src/gpg/UID.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/gpg/UID.cpp b/src/gpg/UID.cpp
deleted file mode 100644
index a4e6f342..00000000
--- a/src/gpg/UID.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-//
-// Created by eric on 2021/5/22.
-//
-
-#include "gpg/UID.h"
-
-UID::UID(gpgme_user_id_t user_id) :
- uid(user_id->uid), name(user_id->name), email(user_id->email), comment(user_id->comment),
- revoked(user_id->revoked), invalid(user_id->invalid) {
-
- auto sig = user_id->signatures;
-
- while (sig != nullptr) {
- signatures.push_back(Signature(sig));
- sig = sig->next;
- }
-
-} \ No newline at end of file