aboutsummaryrefslogtreecommitdiff
path: root/lib/crypto/qolmutils.cpp
blob: a486ea0ff2e54b1347e29f7a8c4a52982e66a709 (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
// SPDX-FileCopyrightText: 2021 Carl Schwan <carlschwan@kde.org>
//
// SPDX-License-Identifier: LGPL-2.1-or-later

#ifdef Quotient_E2EE_ENABLED
#include "crypto/qolmutils.h"
#include <QDebug>
#include <openssl/rand.h>

using namespace Quotient;

QByteArray Quotient::toKey(const Quotient::PicklingMode &mode)
{
    if (std::holds_alternative<Quotient::Unencrypted>(mode)) {
        return "";
    }
    return std::get<Quotient::Encrypted>(mode).key;
}

QByteArray Quotient::getRandom(size_t bufferSize)
{
    QByteArray buffer(bufferSize, '0');
    RAND_bytes(reinterpret_cast<uint8_t *>(buffer.data()), buffer.size());
    return buffer;
}
#endif