Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SymmetricCipherSalsa20.cpp « crypto « src - github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 53aa18baf9a3276adcd2d134f4617f9209ffb029 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
*  Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
*
*  This program is free software: you can redistribute it and/or modify
*  it under the terms of the GNU General Public License as published by
*  the Free Software Foundation, either version 2 or (at your option)
*  version 3 of the License.
*
*  This program is distributed in the hope that it will be useful,
*  but WITHOUT ANY WARRANTY; without even the implied warranty of
*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
*  GNU General Public License for more details.
*
*  You should have received a copy of the GNU General Public License
*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#include "SymmetricCipherSalsa20.h"

SymmetricCipherSalsa20::SymmetricCipherSalsa20(SymmetricCipher::Algorithm algo, SymmetricCipher::Mode mode,
                       SymmetricCipher::Direction direction)
{
    Q_ASSERT(algo == SymmetricCipher::Salsa20);
    Q_UNUSED(algo);

    Q_ASSERT(mode == SymmetricCipher::Stream);
    Q_UNUSED(mode);

    Q_UNUSED(direction);
}

SymmetricCipherSalsa20::~SymmetricCipherSalsa20()
{
}

void SymmetricCipherSalsa20::init()
{
}

void SymmetricCipherSalsa20::setKey(const QByteArray& key)
{
    Q_ASSERT((key.size() == 16) || (key.size() == 32));

    m_key = key;
    ECRYPT_keysetup(&m_ctx, reinterpret_cast<const u8*>(m_key.constData()), m_key.size()*8, 64);
}

void SymmetricCipherSalsa20::setIv(const QByteArray& iv)
{
    Q_ASSERT(iv.size() == 8);

    m_iv = iv;
    ECRYPT_ivsetup(&m_ctx, reinterpret_cast<const u8*>(m_iv.constData()));
}

QByteArray SymmetricCipherSalsa20::process(const QByteArray& data)
{
    Q_ASSERT((data.size() < blockSize()) || ((data.size() % blockSize()) == 0));

    QByteArray result;
    result.resize(data.size());

    ECRYPT_encrypt_bytes(&m_ctx, reinterpret_cast<const u8*>(data.constData()),
                         reinterpret_cast<u8*>(result.data()), data.size());

    return result;
}

void SymmetricCipherSalsa20::processInPlace(QByteArray& data)
{
    Q_ASSERT((data.size() < blockSize()) || ((data.size() % blockSize()) == 0));

    ECRYPT_encrypt_bytes(&m_ctx, reinterpret_cast<const u8*>(data.constData()),
                         reinterpret_cast<u8*>(data.data()), data.size());
}

void SymmetricCipherSalsa20::processInPlace(QByteArray& data, int rounds)
{
    Q_ASSERT((data.size() < blockSize()) || ((data.size() % blockSize()) == 0));

    for (int i = 0; i != rounds; ++i) {
        ECRYPT_encrypt_bytes(&m_ctx, reinterpret_cast<const u8*>(data.constData()),
                             reinterpret_cast<u8*>(data.data()), data.size());
    }
}

void SymmetricCipherSalsa20::reset()
{
    ECRYPT_ivsetup(&m_ctx, reinterpret_cast<const u8*>(m_iv.constData()));
}

int SymmetricCipherSalsa20::blockSize() const
{
    return 64;
}