aboutsummaryrefslogtreecommitdiffstats
path: root/include/gpg/Signature.h
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-05-28 19:21:46 +0000
committerSaturneric <[email protected]>2021-05-28 19:21:46 +0000
commita5c3aa5ceff300cad9203f3620f16920e726a762 (patch)
treebb375530f126f29746f4f4aa10985831beefec79 /include/gpg/Signature.h
parentAdjust part of the text of the UI interface of the UID operation tab. (diff)
downloadGpgFrontend-a5c3aa5ceff300cad9203f3620f16920e726a762.tar.gz
GpgFrontend-a5c3aa5ceff300cad9203f3620f16920e726a762.zip
Make eligible keys enter the signature candidate list.
Added delete UID interface and function. Added setting as the main UID function. Added the delete key signature menu and function (there is a problem). Improve the presentation of key list items Improve the page function of KeyList. Added pop-up menu for UID list operation on UIDTab interface. Signed-off-by: Saturneric <[email protected]>
Diffstat (limited to '')
-rw-r--r--include/gpg/Signature.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/include/gpg/Signature.h b/include/gpg/Signature.h
index 3fa4414b..4d69c90b 100644
--- a/include/gpg/Signature.h
+++ b/include/gpg/Signature.h
@@ -30,25 +30,21 @@
struct Signature {
bool revoked{};
-
bool expired{};
-
bool invalid{};
-
bool exportable{};
+ gpgme_error_t status{};
+
+ QString keyid;
QString pubkey_algo;
QDateTime create_time;
-
QDateTime expire_time;
QString uid;
-
QString name;
-
QString email;
-
QString comment;
Signature() = default;