blob: 0bd05432d495552326e6112c3539b9153250f34b (
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
|
#pragma once
#include <functional>
#include <memory>
#include <QtCore/QObject>
namespace QMatrixClient
{
class Connection;
class EncryptionManager: public QObject
{
Q_OBJECT
public:
// TODO: store constats separately?
// TODO: 0.5 oneTimeKeyThreshold instead of 0.1?
explicit EncryptionManager(const QByteArray& encryptionAccountPickle, float signedKeysProportion = 1, float oneTimeKeyThreshold = float(0.1),
QObject* parent = nullptr);
~EncryptionManager();
void uploadIdentityKeys(Connection* connection);
void uploadOneTimeKeys(Connection* connection, bool forceUpdate = false);
private:
class Private;
std::unique_ptr<Private> d;
};
} // namespace QMatrixClient
|