diff options
author | Tobias Fella <fella@posteo.de> | 2022-05-16 20:51:41 +0200 |
---|---|---|
committer | Tobias Fella <fella@posteo.de> | 2022-05-16 20:51:41 +0200 |
commit | e437c29654e8f988ad694083401bbef23fbbcb18 (patch) | |
tree | 37c461256435a876cc8446052522feddeed166ae /lib/events | |
parent | fcde81c8618fbe10c1cb91c0ec6887a3df705a23 (diff) | |
download | libquotient-e437c29654e8f988ad694083401bbef23fbbcb18.tar.gz libquotient-e437c29654e8f988ad694083401bbef23fbbcb18.zip |
More work; Update olm pickle & timestamps in database; Remove TODOs
Diffstat (limited to 'lib/events')
-rw-r--r-- | lib/events/encryptedfile.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/events/encryptedfile.cpp b/lib/events/encryptedfile.cpp index e90be428..bb4e26c7 100644 --- a/lib/events/encryptedfile.cpp +++ b/lib/events/encryptedfile.cpp @@ -56,6 +56,7 @@ QByteArray EncryptedFile::decryptFile(const QByteArray& ciphertext) const std::pair<EncryptedFile, QByteArray> EncryptedFile::encryptFile(const QByteArray &plainText) { +#ifdef Quotient_E2EE_ENABLED QByteArray k = getRandom(32); auto kBase64 = k.toBase64(); QByteArray iv = getRandom(16); @@ -73,6 +74,9 @@ std::pair<EncryptedFile, QByteArray> EncryptedFile::encryptFile(const QByteArray auto ivBase64 = iv.toBase64(); EncryptedFile file = {{}, key, ivBase64.left(ivBase64.indexOf('=')), {{QStringLiteral("sha256"), hash.left(hash.indexOf('='))}}, "v2"_ls}; return {file, cipherText}; +#else + return {{}, {}}; +#endif } void JsonObjectConverter<EncryptedFile>::dumpTo(QJsonObject& jo, |