aboutsummaryrefslogtreecommitdiff
path: root/lib/encryptionmanager.h
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2019-08-03 17:29:52 +0900
committerGitHub <noreply@github.com>2019-08-03 17:29:52 +0900
commit66e116b7b1e848e80577a0229c8995db0a54932e (patch)
tree763340439a0f4034e9c829d76cb1ffe9766b83c5 /lib/encryptionmanager.h
parent5b236dfe895c7766002559570aa29c9033009228 (diff)
parentc05ade838f0fce81f2bbe80a3295618a8a26ff52 (diff)
downloadlibquotient-66e116b7b1e848e80577a0229c8995db0a54932e.tar.gz
libquotient-66e116b7b1e848e80577a0229c8995db0a54932e.zip
Merge pull request #295 from marcdeop/140_impose_coding_standard
140 impose coding standard
Diffstat (limited to 'lib/encryptionmanager.h')
-rw-r--r--lib/encryptionmanager.h48
1 files changed, 24 insertions, 24 deletions
diff --git a/lib/encryptionmanager.h b/lib/encryptionmanager.h
index 0225969d..79c25a00 100644
--- a/lib/encryptionmanager.h
+++ b/lib/encryptionmanager.h
@@ -1,38 +1,38 @@
#pragma once
+#include <QtCore/QObject>
+
#include <functional>
#include <memory>
-#include <QtCore/QObject>
namespace QtOlm {
- class Account;
+class Account;
}
-namespace QMatrixClient
-{
- class Connection;
-
- class EncryptionManager: public QObject
- {
- Q_OBJECT
+namespace QMatrixClient {
+class Connection;
- public:
- // TODO: store constats separately?
- // TODO: 0.5 oneTimeKeyThreshold instead of 0.1?
- explicit EncryptionManager(const QByteArray& encryptionAccountPickle = QByteArray(), float signedKeysProportion = 1, float oneTimeKeyThreshold = float(0.1),
- QObject* parent = nullptr);
- ~EncryptionManager();
+class EncryptionManager : public QObject {
+ Q_OBJECT
- void uploadIdentityKeys(Connection* connection);
- void uploadOneTimeKeys(Connection* connection, bool forceUpdate = false);
- QByteArray olmAccountPickle();
+public:
+ // TODO: store constats separately?
+ // TODO: 0.5 oneTimeKeyThreshold instead of 0.1?
+ explicit EncryptionManager(
+ const QByteArray& encryptionAccountPickle = QByteArray(),
+ float signedKeysProportion = 1, float oneTimeKeyThreshold = float(0.1),
+ QObject* parent = nullptr);
+ ~EncryptionManager();
- QtOlm::Account* account() const;
+ void uploadIdentityKeys(Connection* connection);
+ void uploadOneTimeKeys(Connection* connection, bool forceUpdate = false);
+ QByteArray olmAccountPickle();
- private:
- class Private;
- std::unique_ptr<Private> d;
+ QtOlm::Account* account() const;
- };
+private:
+ class Private;
+ std::unique_ptr<Private> d;
+};
-} // namespace QMatrixClient
+} // namespace QMatrixClient