aboutsummaryrefslogtreecommitdiff
path: root/lib/events
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-02-14 15:25:24 +0100
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-02-16 17:58:17 +0100
commit0a43c023b94e12b3130572f2dd0d6ac8bb4ed110 (patch)
tree46e9bc94c44e1118e2fcede133c01aaed0ca652d /lib/events
parent2178ca994c4b33197239155f7f6715e0451b9172 (diff)
downloadlibquotient-0a43c023b94e12b3130572f2dd0d6ac8bb4ed110.tar.gz
libquotient-0a43c023b94e12b3130572f2dd0d6ac8bb4ed110.zip
isSupportedAlgorithm()
That's a better primitive than just exposing SupportedAlgorithms list.
Diffstat (limited to 'lib/events')
-rw-r--r--lib/events/encryptedevent.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/events/encryptedevent.cpp b/lib/events/encryptedevent.cpp
index ba4dd154..9d07a35f 100644
--- a/lib/events/encryptedevent.cpp
+++ b/lib/events/encryptedevent.cpp
@@ -35,14 +35,11 @@ EncryptedEvent::EncryptedEvent(const QJsonObject& obj)
QString EncryptedEvent::algorithm() const
{
- auto algo = contentPart<QString>(AlgorithmKeyL);
- static constexpr auto SupportedAlgorithms =
- make_array(OlmV1Curve25519AesSha2AlgoKey, MegolmV1AesSha2AlgoKey);
- if (std::find(SupportedAlgorithms.cbegin(), SupportedAlgorithms.cend(),
- algo) == SupportedAlgorithms.cend()) {
+ const auto algo = contentPart<QString>(AlgorithmKeyL);
+ if (!isSupportedAlgorithm(algo))
qWarning(MAIN) << "The EncryptedEvent's algorithm" << algo
<< "is not supported";
- }
+
return algo;
}