diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2017-05-03 20:47:15 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2017-05-03 20:47:15 +0300 |
commit | 786480850ac3d16c62ee2abfe410c4e00d16f70b (patch) | |
tree | 2026f57a1455381083c487730474b5d171f83ea4 /utils/encrypt_bmp.cpp | |
parent | common.cmake: bugfix & refactoring (diff) | |
download | aes-tools-786480850ac3d16c62ee2abfe410c4e00d16f70b.tar.gz aes-tools-786480850ac3d16c62ee2abfe410c4e00d16f70b.zip |
code style
Diffstat (limited to 'utils/encrypt_bmp.cpp')
-rw-r--r-- | utils/encrypt_bmp.cpp | 4 |
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); } } |