aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils/decrypt_bmp.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--utils/decrypt_bmp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/decrypt_bmp.cpp b/utils/decrypt_bmp.cpp
index 1d287d2..17a64dd 100644
--- a/utils/decrypt_bmp.cpp
+++ b/utils/decrypt_bmp.cpp
@@ -46,13 +46,13 @@ namespace
{
aes::Box::Block iv;
aes::Box::parse_block(iv, algorithm, settings.get_iv_string());
- aes::Box box{ algorithm, key, mode, iv };
+ aes::Box box{algorithm, key, mode, iv};
decrypt_bmp(box, ciphertext_path, plaintext_path);
}
else
{
- aes::Box box{ algorithm, key };
+ aes::Box box{algorithm, key};
decrypt_bmp(box, ciphertext_path, plaintext_path);
}
}