35#ifndef __QGPGME_QGPGMEENCRYPTJOB_H__
36#define __QGPGME_QGPGMEENCRYPTJOB_H__
38#include "encryptjob.h"
40#include "threadedjobmixin.h"
43# include "encryptionresult.h"
45#include <gpgme++/encryptionresult.h>
50#include <gpgme++/key.h>
78 const std::shared_ptr<QIODevice> &
plainText,
83 GpgME::EncryptionResult exec(
const std::vector<GpgME::Key> &
recipients,
88 const std::shared_ptr<QIODevice> &
plainText,
104 bool mOutputIsBase64Encoded;
105 GpgME::EncryptionResult mResult;
An abstract base class for asynchronous encrypters.
Definition encryptjob.h:78
Definition qgpgmeencryptjob.h:62
void setOutputIsBase64Encoded(bool on) Q_DECL_OVERRIDE
Definition qgpgmeencryptjob.cpp:66
GpgME::EncryptionResult exec(const std::vector< GpgME::Key > &recipients, const QByteArray &plainText, const GpgME::Context::EncryptionFlags flags, QByteArray &cipherText) Q_DECL_OVERRIDE
void start(const std::vector< GpgME::Key > &recipients, const std::shared_ptr< QIODevice > &plainText, const std::shared_ptr< QIODevice > &cipherText, bool alwaysTrust) Q_DECL_OVERRIDE
GpgME::Error start(const std::vector< GpgME::Key > &recipients, const QByteArray &plainText, bool alwaysTrust) Q_DECL_OVERRIDE
void start(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
Definition threadedjobmixin.h:125
Definition qgpgmebackend.h:43