From be612cbab27967afcc60175ce78ea88b7108659e Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 21 Jun 2016 19:51:34 +0300 Subject: fix GCC errors --- utils/decrypt_bmp.cpp | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'utils/decrypt_bmp.cpp') diff --git a/utils/decrypt_bmp.cpp b/utils/decrypt_bmp.cpp index f098017..1e286e6 100644 --- a/utils/decrypt_bmp.cpp +++ b/utils/decrypt_bmp.cpp @@ -98,18 +98,14 @@ namespace { aes::Box::Block iv; aes::Box::parse_block(iv, algorithm, settings.get_iv_string()); + aes::Box box{ algorithm, key, mode, iv }; - decrypt_bmp( - aes::Box(algorithm, key, mode, iv), - ciphertext_path, - plaintext_path); + decrypt_bmp(box, ciphertext_path, plaintext_path); } else { - decrypt_bmp( - aes::Box(algorithm, key), - ciphertext_path, - plaintext_path); + aes::Box box{ algorithm, key }; + decrypt_bmp(box, ciphertext_path, plaintext_path); } } } -- cgit v1.2.3