aboutsummaryrefslogtreecommitdiff
path: root/lib/crypto
diff options
context:
space:
mode:
authorTobias Fella <fella@posteo.de>2021-06-10 23:05:46 +0200
committerTobias Fella <fella@posteo.de>2021-12-01 21:56:11 +0100
commitd30a5153cca335ff6f23cc5a3019001913df0edd (patch)
tree6903b0cb7ee70e466f6e97b7c8256228c6ba39a5 /lib/crypto
parent429dbc5670b3f9eba44221395a75221b8306c068 (diff)
downloadlibquotient-d30a5153cca335ff6f23cc5a3019001913df0edd.tar.gz
libquotient-d30a5153cca335ff6f23cc5a3019001913df0edd.zip
Fix JSON formatting for one-time-key signature creation
Diffstat (limited to 'lib/crypto')
-rw-r--r--lib/crypto/qolmaccount.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/crypto/qolmaccount.cpp b/lib/crypto/qolmaccount.cpp
index 6b7bc9a9..22b1faef 100644
--- a/lib/crypto/qolmaccount.cpp
+++ b/lib/crypto/qolmaccount.cpp
@@ -206,7 +206,7 @@ SignedOneTimeKey QOlmAccount::signedOneTimeKey(const QByteArray &key, const QStr
QByteArray QOlmAccount::signOneTimeKey(const QString &key) const
{
QJsonDocument j(QJsonObject{{"key", key}});
- return sign(j.toJson());
+ return sign(j.toJson(QJsonDocument::Compact));
}
std::optional<QOlmError> QOlmAccount::removeOneTimeKeys(const std::unique_ptr<QOlmSession> &session) const