diff options
Diffstat (limited to '')
-rw-r--r-- | utils/decrypt_file.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/decrypt_file.cpp b/utils/decrypt_file.cpp index 3bbbb06..75f8fb8 100644 --- a/utils/decrypt_file.cpp +++ b/utils/decrypt_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}; decrypt_file(box, ciphertext_path, plaintext_path); } else { - aes::Box box{ algorithm, key }; + aes::Box box{algorithm, key}; decrypt_file(box, ciphertext_path, plaintext_path); } } |