aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils/encrypt_bmp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/encrypt_bmp.cpp')
-rw-r--r--utils/encrypt_bmp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/encrypt_bmp.cpp b/utils/encrypt_bmp.cpp
index c28dbf2..ac6cb92 100644
--- a/utils/encrypt_bmp.cpp
+++ b/utils/encrypt_bmp.cpp
@@ -44,13 +44,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};
encrypt_bmp(box, plaintext_path, ciphertext_path);
}
else
{
- aes::Box box{ algorithm, key };
+ aes::Box box{algorithm, key};
encrypt_bmp(box, plaintext_path, ciphertext_path);
}
}