diff options
Diffstat (limited to 'lang/qt/src/qgpgmesignencryptjob.h')
-rw-r--r-- | lang/qt/src/qgpgmesignencryptjob.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lang/qt/src/qgpgmesignencryptjob.h b/lang/qt/src/qgpgmesignencryptjob.h index 49177d37..e76c245a 100644 --- a/lang/qt/src/qgpgmesignencryptjob.h +++ b/lang/qt/src/qgpgmesignencryptjob.h @@ -87,12 +87,24 @@ public: const std::shared_ptr<QIODevice> &cipherText, bool alwaysTrust) Q_DECL_OVERRIDE; + void start(const std::vector<GpgME::Key> &signers, + const std::vector<GpgME::Key> &recipients, + const std::shared_ptr<QIODevice> &plainText, + const std::shared_ptr<QIODevice> &cipherText, + const GpgME::Context::EncryptionFlags flags) Q_DECL_OVERRIDE; + std::pair<GpgME::SigningResult, GpgME::EncryptionResult> exec(const std::vector<GpgME::Key> &signers, const std::vector<GpgME::Key> &recipients, const QByteArray &plainText, bool alwaysTrust, QByteArray &cipherText) Q_DECL_OVERRIDE; + std::pair<GpgME::SigningResult, GpgME::EncryptionResult> + exec(const std::vector<GpgME::Key> &signers, + const std::vector<GpgME::Key> &recipients, + const QByteArray &plainText, const GpgME::Context::EncryptionFlags flags, + QByteArray &cipherText) Q_DECL_OVERRIDE; + /* from SignEncryptJob */ void setOutputIsBase64Encoded(bool on) Q_DECL_OVERRIDE; |