aboutsummaryrefslogtreecommitdiff
path: root/lib/olm/message.cpp
blob: 0998a66bb74adbe19c2365f323c356d7774fdce5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// SPDX-FileCopyrightText: 2021 Alexey Andreyev <aa13q@ya.ru>
//
// SPDX-License-Identifier: LGPL-2.1-or-later

#ifdef Quotient_E2EE_ENABLED
#include "olm/message.h"

using namespace Quotient;

Message::Message(const QByteArray &ciphertext, Message::Type type)
    : QByteArray(std::move(ciphertext)), _messageType(type)
{
    Q_ASSERT_X(!ciphertext.isEmpty(), "olm message", "Ciphertext is empty");
}

Message::Message(QByteArray ciphertext) : QByteArray(std::move(ciphertext))
{
    Q_ASSERT_X(!ciphertext.isEmpty(), "olm message", "Ciphertext is empty");
}

Message::Type Message::type() const
{
    return _messageType;
}

QByteArray Message::toCiphertext() const
{
    return QByteArray(*this);
}


#endif // Quotient_E2EE_ENABLED