aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils/decrypt_bmp.cpp
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-06-21 19:51:34 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2016-06-21 19:51:34 +0300
commitbe612cbab27967afcc60175ce78ea88b7108659e (patch)
treeb7715ddd869bb14e4492e4b0fafadc52886da7de /utils/decrypt_bmp.cpp
parentREADME updates (diff)
downloadaes-tools-be612cbab27967afcc60175ce78ea88b7108659e.tar.gz
aes-tools-be612cbab27967afcc60175ce78ea88b7108659e.zip
fix GCC errors
Diffstat (limited to '')
-rw-r--r--utils/decrypt_bmp.cpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/utils/decrypt_bmp.cpp b/utils/decrypt_bmp.cpp
index f098017..1e286e6 100644
--- a/utils/decrypt_bmp.cpp
+++ b/utils/decrypt_bmp.cpp
@@ -98,18 +98,14 @@ namespace
{
aes::Box::Block iv;
aes::Box::parse_block(iv, algorithm, settings.get_iv_string());
+ aes::Box box{ algorithm, key, mode, iv };
- decrypt_bmp(
- aes::Box(algorithm, key, mode, iv),
- ciphertext_path,
- plaintext_path);
+ decrypt_bmp(box, ciphertext_path, plaintext_path);
}
else
{
- decrypt_bmp(
- aes::Box(algorithm, key),
- ciphertext_path,
- plaintext_path);
+ aes::Box box{ algorithm, key };
+ decrypt_bmp(box, ciphertext_path, plaintext_path);
}
}
}