diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-02-27 18:10:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-27 18:10:06 +0100 |
commit | 7b1320be28024280d930617858f26dd4db34e68c (patch) | |
tree | dbc34f2a9090b967746332570c88382a188b162a /lib/connection.h | |
parent | bcc8d2d6547e2efd595628a1528ed609eccddad6 (diff) | |
parent | f159d5ec0caf75468c802ee997630af8f7fda02d (diff) | |
download | libquotient-7b1320be28024280d930617858f26dd4db34e68c.tar.gz libquotient-7b1320be28024280d930617858f26dd4db34e68c.zip |
Merge #535: Convenience functions for querying user devices and keys from cache
Diffstat (limited to 'lib/connection.h')
-rw-r--r-- | lib/connection.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/connection.h b/lib/connection.h index 165d8d68..4a475319 100644 --- a/lib/connection.h +++ b/lib/connection.h @@ -680,6 +680,10 @@ public Q_SLOTS: void encryptionUpdate(Room *room); PicklingMode picklingMode() const; QJsonObject decryptNotification(const QJsonObject ¬ification); + + QStringList devicesForUser(User* user) const; + QString curveKeyForUserDevice(const QString &user, const QString& device) const; + QString edKeyForUserDevice(const QString& user, const QString& device) const; #endif Q_SIGNALS: /// \brief Initial server resolution has failed |