aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/AES_PDF_native.cc
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2022-02-08 15:18:08 +0100
committerJay Berkenbilt <ejb@ql.org>2022-02-08 17:51:15 +0100
commitcb769c62e55599e9f980001830bc61d9fcaa64a9 (patch)
tree0bf980c385a61cbc8720cf990762ffc1200f9d6a /libqpdf/AES_PDF_native.cc
parent716381f65a2b2dc72f8da2426ba71aeab02c507f (diff)
downloadqpdf-cb769c62e55599e9f980001830bc61d9fcaa64a9.tar.zst
WHITESPACE ONLY -- expand tabs in source code
This comment expands all tabs using an 8-character tab-width. You should ignore this commit when using git blame or use git blame -w. In the early days, I used to use tabs where possible for indentation, since emacs did this automatically. In recent years, I have switched to only using spaces, which means qpdf source code has been a mixture of spaces and tabs. I have avoided cleaning this up because of not wanting gratuitous whitespaces change to cloud the output of git blame, but I changed my mind after discussing with users who view qpdf source code in editors/IDEs that have other tab widths by default and in light of the fact that I am planning to start applying automatic code formatting soon.
Diffstat (limited to 'libqpdf/AES_PDF_native.cc')
-rw-r--r--libqpdf/AES_PDF_native.cc46
1 files changed, 23 insertions, 23 deletions
diff --git a/libqpdf/AES_PDF_native.cc b/libqpdf/AES_PDF_native.cc
index afbc0bdc..b0900f70 100644
--- a/libqpdf/AES_PDF_native.cc
+++ b/libqpdf/AES_PDF_native.cc
@@ -26,12 +26,12 @@ AES_PDF_native::AES_PDF_native(bool encrypt, unsigned char const* key,
std::memset(this->rk.get(), 0, rk_bytes);
if (encrypt)
{
- this->nrounds = rijndaelSetupEncrypt(
+ this->nrounds = rijndaelSetupEncrypt(
this->rk.get(), this->key.get(), keybits);
}
else
{
- this->nrounds = rijndaelSetupDecrypt(
+ this->nrounds = rijndaelSetupDecrypt(
this->rk.get(), this->key.get(), keybits);
}
}
@@ -45,33 +45,33 @@ AES_PDF_native::update(unsigned char* in_data, unsigned char* out_data)
{
if (this->encrypt)
{
- if (this->cbc_mode)
- {
- for (size_t i = 0; i < QPDFCryptoImpl::rijndael_buf_size; ++i)
- {
- in_data[i] ^= this->cbc_block[i];
- }
- }
- rijndaelEncrypt(this->rk.get(),
+ if (this->cbc_mode)
+ {
+ for (size_t i = 0; i < QPDFCryptoImpl::rijndael_buf_size; ++i)
+ {
+ in_data[i] ^= this->cbc_block[i];
+ }
+ }
+ rijndaelEncrypt(this->rk.get(),
this->nrounds, in_data, out_data);
- if (this->cbc_mode)
- {
- memcpy(this->cbc_block, out_data,
+ if (this->cbc_mode)
+ {
+ memcpy(this->cbc_block, out_data,
QPDFCryptoImpl::rijndael_buf_size);
- }
+ }
}
else
{
- rijndaelDecrypt(this->rk.get(),
+ rijndaelDecrypt(this->rk.get(),
this->nrounds, in_data, out_data);
- if (this->cbc_mode)
- {
- for (size_t i = 0; i < QPDFCryptoImpl::rijndael_buf_size; ++i)
- {
- out_data[i] ^= this->cbc_block[i];
- }
- memcpy(this->cbc_block, in_data,
+ if (this->cbc_mode)
+ {
+ for (size_t i = 0; i < QPDFCryptoImpl::rijndael_buf_size; ++i)
+ {
+ out_data[i] ^= this->cbc_block[i];
+ }
+ memcpy(this->cbc_block, in_data,
QPDFCryptoImpl::rijndael_buf_size);
- }
+ }
}
}