From 31bf3102fe8f8cdd3f1448f0f22f182d0c2820d2 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Tue, 23 May 2017 21:00:50 +0200 Subject: Moved MIME related stuff to a mime subdir --- .../domain/mimetreeparser/otp/qgpgmejobexecutor.h | 86 ---------------------- 1 file changed, 86 deletions(-) delete mode 100644 framework/src/domain/mimetreeparser/otp/qgpgmejobexecutor.h (limited to 'framework/src/domain/mimetreeparser/otp/qgpgmejobexecutor.h') diff --git a/framework/src/domain/mimetreeparser/otp/qgpgmejobexecutor.h b/framework/src/domain/mimetreeparser/otp/qgpgmejobexecutor.h deleted file mode 100644 index 8a81b078..00000000 --- a/framework/src/domain/mimetreeparser/otp/qgpgmejobexecutor.h +++ /dev/null @@ -1,86 +0,0 @@ -/* - Copyright (c) 2008 Volker Krause - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -*/ - -#ifndef __MIMETREEPARSER_KLEOJOBEXECUTOR_H__ -#define __MIMETREEPARSER_KLEOJOBEXECUTOR_H__ - -#include -#include -#include - -#include - -#include - -class QEventLoop; - -namespace QGpgME -{ -class DecryptVerifyJob; -class ImportJob; -class VerifyDetachedJob; -class VerifyOpaqueJob; -} - -namespace MimeTreeParser -{ - -/** - Helper class for synchronous execution of Kleo crypto jobs. -*/ -class QGpgMEJobExecutor : public QObject -{ - Q_OBJECT -public: - explicit QGpgMEJobExecutor(QObject *parent = nullptr); - - GpgME::VerificationResult exec(QGpgME::VerifyDetachedJob *job, - const QByteArray &signature, - const QByteArray &signedData); - GpgME::VerificationResult exec(QGpgME::VerifyOpaqueJob *job, - const QByteArray &signedData, - QByteArray &plainText); - std::pair exec(QGpgME::DecryptVerifyJob *job, - const QByteArray &cipherText, - QByteArray &plainText); - GpgME::ImportResult exec(QGpgME::ImportJob *job, const QByteArray &certData); - - GpgME::Error auditLogError() const; - QString auditLogAsHtml() const; - -private Q_SLOTS: - void verificationResult(const GpgME::VerificationResult &result); - void verificationResult(const GpgME::VerificationResult &result, const QByteArray &plainText); - void decryptResult(const GpgME::DecryptionResult &decryptionresult, - const GpgME::VerificationResult &verificationresult, - const QByteArray &plainText); - void importResult(const GpgME::ImportResult &result); - -private: - QEventLoop *mEventLoop; - GpgME::VerificationResult mVerificationResult; - GpgME::DecryptionResult mDecryptResult; - GpgME::ImportResult mImportResult; - QByteArray mData; - GpgME::Error mAuditLogError; - QString mAuditLog; -}; - -} - -#endif -- cgit v1.2.3