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_file.cpp | |
parent | common.cmake: bugfix & refactoring (diff) | |
download | aes-tools-786480850ac3d16c62ee2abfe410c4e00d16f70b.tar.gz aes-tools-786480850ac3d16c62ee2abfe410c4e00d16f70b.zip |
code style
Diffstat (limited to 'utils/encrypt_file.cpp')
-rw-r--r-- | utils/encrypt_file.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/encrypt_file.cpp b/utils/encrypt_file.cpp index 721b735..9a4ee5c 100644 --- a/utils/encrypt_file.cpp +++ b/utils/encrypt_file.cpp @@ -43,13 +43,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_file(box, plaintext_path, ciphertext_path); } else { - aes::Box box{ algorithm, key }; + aes::Box box{algorithm, key}; encrypt_file(box, plaintext_path, ciphertext_path); } } |