GCrypt/GhettoCrypt/Cipher.cpp

128 lines
3.1 KiB
C++
Raw Normal View History

2021-12-06 12:47:15 +01:00
#include <iostream>
#include <vector>
2021-12-06 02:20:47 +01:00
#include "Cipher.h"
#include "Util.h"
2021-12-06 02:20:47 +01:00
GhettoCipher::Cipher::Cipher(const Block& key)
:
key { key }
{
return;
}
2021-12-06 02:20:47 +01:00
GhettoCipher::Cipher::Cipher(const std::string& password)
{
key = PasswordToKey(password);
return;
}
2021-12-06 02:20:47 +01:00
GhettoCipher::Cipher::~Cipher()
{
// Clear key memory
ZeroKeyMemory();
return;
}
2021-12-06 02:20:47 +01:00
void GhettoCipher::Cipher::SetKey(const Block& key)
{
ZeroKeyMemory();
this->key = key;
return;
}
2021-12-06 02:20:47 +01:00
void GhettoCipher::Cipher::SetPassword(const std::string& password)
{
ZeroKeyMemory();
key = PasswordToKey(password);
return;
}
2021-12-06 02:20:47 +01:00
GhettoCipher::Flexblock GhettoCipher::Cipher::Encipher(const Flexblock& data, bool printProgress) const
{
// Split cleartext into blocks
std::vector<Block> blocks;
for (std::size_t i = 0; i < data.size(); i += BLOCK_SIZE)
blocks.push_back(Block(
PadStringToLength(data.substr(i, BLOCK_SIZE), BLOCK_SIZE, '0', false))
);
// Encrypt individual blocks using cipher block chaining
Feistel feistel(key);
for (std::size_t i = 0; i < blocks.size(); i++)
{
2021-12-06 01:33:55 +01:00
// Print reports if desired. If we have > 1000 blocks, print one report every 100 blocks. Otherwise for every 10th block.
2021-12-06 01:38:43 +01:00
if ((i % ((blocks.size() > 1000)? 100 : 10) == 0) && (printProgress))
2021-12-06 02:29:09 +01:00
std::cout << "Encrypting... (Block " << i << " / " << blocks.size() << " - " << ((float)i*100 / blocks.size()) << "%)" << std::endl;
2021-12-06 01:33:55 +01:00
const Block& lastBlock = (i>0) ? blocks[i-1] : emptyBlock;
blocks[i] = feistel.Encipher(blocks[i] ^ lastBlock);
}
// Concatenate ciphertext blocks back into a flexblock
std::stringstream ss;
for (Block& b : blocks)
ss << b;
// Return it
return ss.str();
}
2021-12-06 02:20:47 +01:00
GhettoCipher::Flexblock GhettoCipher::Cipher::Decipher(const Flexblock& data, bool printProgress) const
{
// Split ciphertext into blocks
std::vector<Block> blocks;
for (std::size_t i = 0; i < data.size(); i += BLOCK_SIZE)
blocks.push_back(Block(
PadStringToLength(data.substr(i, BLOCK_SIZE), BLOCK_SIZE, '0', false))
);
// Decrypt individual blocks
Feistel feistel(key);
// We can't do this in-loop for decryption, because we are decrypting the blocks in-place.
Block lastBlock = emptyBlock;
for (std::size_t i = 0; i < blocks.size(); i++)
{
2021-12-06 01:33:55 +01:00
// Print reports if desired. If we have > 1000 blocks, print one report every 100 blocks. Otherwise for every 10th block.
2021-12-06 01:38:43 +01:00
if ((i % ((blocks.size() > 1000) ? 100 : 10) == 0) && (printProgress))
2021-12-06 02:29:09 +01:00
std::cout << "Decrypting... (Block " << i << " / " << blocks.size() << " - " << ((float)i*100/ blocks.size()) << "%)" << std::endl;
2021-12-06 01:33:55 +01:00
Block tmpCopy = blocks[i];
blocks[i] = feistel.Decipher(blocks[i]) ^ lastBlock;
lastBlock = std::move(tmpCopy);
}
// Concatenate ciphertext blocks back into a flexblock
std::stringstream ss;
for (Block& b : blocks)
ss << b;
// Return it
return ss.str();
}
2021-12-06 02:57:20 +01:00
#if defined _WIN32 || defined _WIN64
#pragma optimize("", off )
2021-12-06 02:57:20 +01:00
#endif
2021-12-06 02:20:47 +01:00
void GhettoCipher::Cipher::ZeroKeyMemory()
{
key.reset();
return;
}
2021-12-06 02:57:20 +01:00
#if defined _WIN32 || defined _WIN64
#pragma optimize("", on )
2021-12-06 02:57:20 +01:00
#endif
2021-12-06 02:20:47 +01:00
const GhettoCipher::Block GhettoCipher::Cipher::emptyBlock;