aboutsummaryrefslogtreecommitdiff
path: root/lib/encryptionmanager.h
blob: 9656998085ed9d99b5d0e7dada89a72ee13121c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// SPDX-FileCopyrightText: 2019 Alexey Andreyev <aa13q@ya.ru>
// SPDX-License-Identifier: LGPL-2.1-or-later

#ifdef Quotient_E2EE_ENABLED
#pragma once

#include <QtCore/QObject>

#include <functional>
#include <memory>

namespace Quotient {
class Connection;
class QOlmAccount;
struct EncryptedFile;

class EncryptionManager : public QObject {
    Q_OBJECT

public:
    explicit EncryptionManager(QObject* parent = nullptr);
    ~EncryptionManager();
    QString sessionDecryptMessage(const QJsonObject& personalCipherObject,
                                  const QByteArray& senderKey, std::unique_ptr<QOlmAccount>& account);
    static QByteArray decryptFile(const QByteArray &ciphertext, EncryptedFile* encryptedFile);

private:
    class Private;
    std::unique_ptr<Private> d;
};

} // namespace Quotient
#endif // Quotient_E2EE_ENABLED