mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
164 lines
4.1 KiB
C++
164 lines
4.1 KiB
C++
/*
|
|
* 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 "SymmetricCipherGcrypt.h"
|
|
|
|
#include "crypto/Crypto.h"
|
|
|
|
SymmetricCipherGcrypt::SymmetricCipherGcrypt(SymmetricCipher::Algorithm algo, SymmetricCipher::Mode mode,
|
|
SymmetricCipher::Direction direction)
|
|
: m_algo(gcryptAlgo(algo))
|
|
, m_mode(gcryptMode(mode))
|
|
, m_direction(direction)
|
|
{
|
|
Q_ASSERT(Crypto::initalized());
|
|
}
|
|
|
|
SymmetricCipherGcrypt::~SymmetricCipherGcrypt()
|
|
{
|
|
gcry_cipher_close(m_ctx);
|
|
}
|
|
|
|
int SymmetricCipherGcrypt::gcryptAlgo(SymmetricCipher::Algorithm algo)
|
|
{
|
|
switch (algo) {
|
|
case SymmetricCipher::Aes256:
|
|
return GCRY_CIPHER_AES256;
|
|
|
|
case SymmetricCipher::Twofish:
|
|
return GCRY_CIPHER_TWOFISH;
|
|
|
|
default:
|
|
Q_ASSERT(false);
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
int SymmetricCipherGcrypt::gcryptMode(SymmetricCipher::Mode mode)
|
|
{
|
|
switch (mode) {
|
|
case SymmetricCipher::Ecb:
|
|
return GCRY_CIPHER_MODE_ECB;
|
|
|
|
case SymmetricCipher::Cbc:
|
|
return GCRY_CIPHER_MODE_CBC;
|
|
|
|
default:
|
|
Q_ASSERT(false);
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
void SymmetricCipherGcrypt::init()
|
|
{
|
|
gcry_error_t error;
|
|
|
|
error = gcry_cipher_open(&m_ctx, m_algo, m_mode, 0);
|
|
Q_ASSERT(error == 0); // TODO: real error checking
|
|
|
|
size_t blockSizeT;
|
|
error = gcry_cipher_algo_info(m_algo, GCRYCTL_GET_BLKLEN, Q_NULLPTR, &blockSizeT);
|
|
Q_ASSERT(error == 0);
|
|
m_blockSize = blockSizeT;
|
|
}
|
|
|
|
void SymmetricCipherGcrypt::setKey(const QByteArray& key)
|
|
{
|
|
m_key = key;
|
|
gcry_error_t error = gcry_cipher_setkey(m_ctx, m_key.constData(), m_key.size());
|
|
Q_ASSERT(error == 0);
|
|
}
|
|
|
|
void SymmetricCipherGcrypt::setIv(const QByteArray& iv)
|
|
{
|
|
m_iv = iv;
|
|
gcry_error_t error = gcry_cipher_setiv(m_ctx, m_iv.constData(), m_iv.size());
|
|
Q_ASSERT(error == 0);
|
|
}
|
|
|
|
QByteArray SymmetricCipherGcrypt::process(const QByteArray& data)
|
|
{
|
|
// TODO: check block size
|
|
|
|
QByteArray result;
|
|
result.resize(data.size());
|
|
|
|
gcry_error_t error;
|
|
|
|
if (m_direction == SymmetricCipher::Decrypt) {
|
|
error = gcry_cipher_decrypt(m_ctx, result.data(), data.size(), data.constData(), data.size());
|
|
}
|
|
else {
|
|
error = gcry_cipher_encrypt(m_ctx, result.data(), data.size(), data.constData(), data.size());
|
|
}
|
|
|
|
Q_ASSERT(error == 0);
|
|
|
|
return result;
|
|
}
|
|
|
|
void SymmetricCipherGcrypt::processInPlace(QByteArray& data)
|
|
{
|
|
// TODO: check block size
|
|
|
|
gcry_error_t error;
|
|
|
|
if (m_direction == SymmetricCipher::Decrypt) {
|
|
error = gcry_cipher_decrypt(m_ctx, data.data(), data.size(), Q_NULLPTR, 0);
|
|
}
|
|
else {
|
|
error = gcry_cipher_encrypt(m_ctx, data.data(), data.size(), Q_NULLPTR, 0);
|
|
}
|
|
|
|
Q_ASSERT(error == 0);
|
|
}
|
|
|
|
void SymmetricCipherGcrypt::processInPlace(QByteArray& data, quint64 rounds)
|
|
{
|
|
// TODO: check block size
|
|
|
|
gcry_error_t error;
|
|
|
|
if (m_direction == SymmetricCipher::Decrypt) {
|
|
for (quint64 i = 0; i != rounds; ++i) {
|
|
error = gcry_cipher_decrypt(m_ctx, data.data(), data.size(), Q_NULLPTR, 0);
|
|
Q_ASSERT(error == 0);
|
|
}
|
|
}
|
|
else {
|
|
for (quint64 i = 0; i != rounds; ++i) {
|
|
error = gcry_cipher_encrypt(m_ctx, data.data(), data.size(), Q_NULLPTR, 0);
|
|
Q_ASSERT(error == 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
void SymmetricCipherGcrypt::reset()
|
|
{
|
|
gcry_error_t error;
|
|
|
|
error = gcry_cipher_reset(m_ctx);
|
|
Q_ASSERT(error == 0);
|
|
error = gcry_cipher_setiv(m_ctx, m_iv.constData(), m_iv.size());
|
|
Q_ASSERT(error == 0);
|
|
}
|
|
|
|
int SymmetricCipherGcrypt::blockSize() const
|
|
{
|
|
return m_blockSize;
|
|
}
|