summaryrefslogtreecommitdiff
path: root/lang/qt
diff options
context:
space:
mode:
authorJinWang An <jinwang.an@samsung.com>2023-01-30 13:26:33 +0900
committerJinWang An <jinwang.an@samsung.com>2023-01-30 13:26:33 +0900
commit9dc2bb3fe7e57cb5a597efe3a7bf78bda815f374 (patch)
tree9f3a37d7432478f09a1ed5b4557f7545f6ffbc89 /lang/qt
parent7068c0ead0c25a9a1fd3ce0b486636d74350e7ca (diff)
downloadgpgme-9dc2bb3fe7e57cb5a597efe3a7bf78bda815f374.tar.gz
gpgme-9dc2bb3fe7e57cb5a597efe3a7bf78bda815f374.tar.bz2
gpgme-9dc2bb3fe7e57cb5a597efe3a7bf78bda815f374.zip
Imported Upstream version 1.17.1upstream/1.17.1
Diffstat (limited to 'lang/qt')
-rw-r--r--lang/qt/src/protocol.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/lang/qt/src/protocol.h b/lang/qt/src/protocol.h
index 25c71ef..62b2cb2 100644
--- a/lang/qt/src/protocol.h
+++ b/lang/qt/src/protocol.h
@@ -127,11 +127,9 @@ public:
virtual KeyGenerationJob *keyGenerationJob() const = 0;
virtual ImportJob *importJob() const = 0;
virtual ImportFromKeyserverJob *importFromKeyserverJob() const = 0;
- virtual ReceiveKeysJob *receiveKeysJob() const = 0;
virtual ExportJob *publicKeyExportJob(bool armor = false) const = 0;
// the second parameter is ignored; the passphrase in the exported file is always utf-8 encoded
virtual ExportJob *secretKeyExportJob(bool armor = false, const QString & = QString()) const = 0;
- virtual ExportJob *secretSubkeyExportJob(bool armor = false) const = 0;
virtual DownloadJob *downloadJob(bool armor = false) const = 0;
virtual DeleteJob *deleteJob() const = 0;
virtual SignEncryptJob *signEncryptJob(bool armor = false, bool textMode = false) const = 0;
@@ -141,7 +139,6 @@ public:
virtual SignKeyJob *signKeyJob() const = 0;
virtual ChangePasswdJob *changePasswdJob() const = 0;
virtual ChangeOwnerTrustJob *changeOwnerTrustJob() const = 0;
- virtual AddExistingSubkeyJob *addExistingSubkeyJob() const = 0;
virtual AddUserIDJob *addUserIDJob() const = 0;
virtual SpecialJob *specialJob(const char *type, const QMap<QString, QVariant> &args) const = 0;
@@ -161,9 +158,6 @@ public:
/** Find the best key to use for a mailbox. */
virtual KeyForMailboxJob *keyForMailboxJob() const = 0;
- /** This job looks up a key via WKD without importing it. */
- virtual WKDLookupJob *wkdLookupJob() const = 0;
-
/** A Job for interacting with gnupg's wks tools. */
virtual WKSPublishJob *wksPublishJob() const = 0;
@@ -172,6 +166,13 @@ public:
/** A Job for the quick commands */
virtual QuickJob *quickJob() const = 0;
+
+ /** This job looks up a key via WKD without importing it. */
+ virtual WKDLookupJob *wkdLookupJob() const = 0;
+
+ virtual ExportJob *secretSubkeyExportJob(bool armor = false) const = 0;
+ virtual AddExistingSubkeyJob *addExistingSubkeyJob() const = 0;
+ virtual ReceiveKeysJob *receiveKeysJob() const = 0;
};
/** Obtain a reference to the OpenPGP Protocol.