2019-11-04 18:59:19 +00:00
|
|
|
#include <qpdf/AES_PDF_native.hh>
|
2022-02-04 21:31:31 +00:00
|
|
|
|
2019-11-04 18:59:19 +00:00
|
|
|
#include <qpdf/QIntC.hh>
|
2019-11-04 19:41:10 +00:00
|
|
|
#include <qpdf/QPDFCryptoImpl.hh>
|
2019-11-04 18:59:19 +00:00
|
|
|
#include <qpdf/QUtil.hh>
|
|
|
|
#include <qpdf/rijndael.h>
|
|
|
|
#include <cstring>
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <stdlib.h>
|
2019-11-04 19:41:10 +00:00
|
|
|
#include <string>
|
2019-11-04 18:59:19 +00:00
|
|
|
|
|
|
|
AES_PDF_native::AES_PDF_native(
|
|
|
|
bool encrypt,
|
|
|
|
unsigned char const* key,
|
2019-11-04 19:41:10 +00:00
|
|
|
size_t key_bytes,
|
|
|
|
bool cbc_mode,
|
|
|
|
unsigned char* cbc_block) :
|
2019-11-04 18:59:19 +00:00
|
|
|
encrypt(encrypt),
|
2019-11-04 19:41:10 +00:00
|
|
|
cbc_mode(cbc_mode),
|
|
|
|
cbc_block(cbc_block),
|
2019-11-04 18:59:19 +00:00
|
|
|
nrounds(0)
|
|
|
|
{
|
|
|
|
size_t keybits = 8 * key_bytes;
|
2022-02-05 13:15:07 +00:00
|
|
|
this->key = std::make_unique<unsigned char[]>(key_bytes);
|
|
|
|
this->rk = std::make_unique<uint32_t[]>(RKLENGTH(keybits));
|
2019-11-04 18:59:19 +00:00
|
|
|
size_t rk_bytes = RKLENGTH(keybits) * sizeof(uint32_t);
|
|
|
|
std::memcpy(this->key.get(), key, key_bytes);
|
|
|
|
std::memset(this->rk.get(), 0, rk_bytes);
|
|
|
|
if (encrypt) {
|
|
|
|
this->nrounds = rijndaelSetupEncrypt(this->rk.get(), this->key.get(), keybits);
|
|
|
|
} else {
|
|
|
|
this->nrounds = rijndaelSetupDecrypt(this->rk.get(), this->key.get(), keybits);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AES_PDF_native::update(unsigned char* in_data, unsigned char* out_data)
|
|
|
|
{
|
|
|
|
if (this->encrypt) {
|
2022-02-08 14:18:08 +00:00
|
|
|
if (this->cbc_mode) {
|
|
|
|
for (size_t i = 0; i < QPDFCryptoImpl::rijndael_buf_size; ++i) {
|
|
|
|
in_data[i] ^= this->cbc_block[i];
|
|
|
|
}
|
|
|
|
}
|
2019-11-04 18:59:19 +00:00
|
|
|
rijndaelEncrypt(this->rk.get(), this->nrounds, in_data, out_data);
|
2022-02-08 14:18:08 +00:00
|
|
|
if (this->cbc_mode) {
|
2019-11-04 19:41:10 +00:00
|
|
|
memcpy(this->cbc_block, out_data, QPDFCryptoImpl::rijndael_buf_size);
|
2022-02-08 14:18:08 +00:00
|
|
|
}
|
2019-11-04 18:59:19 +00:00
|
|
|
} else {
|
|
|
|
rijndaelDecrypt(this->rk.get(), this->nrounds, in_data, out_data);
|
2022-02-08 14:18:08 +00:00
|
|
|
if (this->cbc_mode) {
|
|
|
|
for (size_t i = 0; i < QPDFCryptoImpl::rijndael_buf_size; ++i) {
|
|
|
|
out_data[i] ^= this->cbc_block[i];
|
|
|
|
}
|
2019-11-04 19:41:10 +00:00
|
|
|
memcpy(this->cbc_block, in_data, QPDFCryptoImpl::rijndael_buf_size);
|
2022-02-08 14:18:08 +00:00
|
|
|
}
|
2019-11-04 18:59:19 +00:00
|
|
|
}
|
|
|
|
}
|