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_block.cpp | |
parent | common.cmake: bugfix & refactoring (diff) | |
download | aes-tools-786480850ac3d16c62ee2abfe410c4e00d16f70b.tar.gz aes-tools-786480850ac3d16c62ee2abfe410c4e00d16f70b.zip |
code style
Diffstat (limited to 'utils/encrypt_block.cpp')
-rw-r--r-- | utils/encrypt_block.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/encrypt_block.cpp b/utils/encrypt_block.cpp index b51d59c..714dab7 100644 --- a/utils/encrypt_block.cpp +++ b/utils/encrypt_block.cpp @@ -148,13 +148,13 @@ namespace { aes::Box::Block iv; aes::Box::parse_block(iv, algorithm, input.get_iv_string()); - aes::Box box{ algorithm, key, mode, iv }; + aes::Box box{algorithm, key, mode, iv}; encrypt_using_particular_box(box, input.get_input_block_strings()); } else { - aes::Box box{ algorithm, key }; + aes::Box box{algorithm, key}; encrypt_using_particular_box(box, input.get_input_block_strings()); } } |