blob: db9bff07c5c8a881232bd56593ca6e4c631d5900 (
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
|
// 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;
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);
private:
class Private;
std::unique_ptr<Private> d;
};
} // namespace Quotient
#endif // Quotient_E2EE_ENABLED
|