aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils/encrypt_bmp.cpp
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-12-28 19:56:30 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-12-28 19:56:30 +0300
commit62b933b4402387379bd26a2d18ad3ded03fddfa4 (patch)
treed4747a4610d1448f964374d405946548f08857bf /utils/encrypt_bmp.cpp
parentutils: code style (diff)
downloadaes-tools-62b933b4402387379bd26a2d18ad3ded03fddfa4.tar.gz
aes-tools-62b933b4402387379bd26a2d18ad3ded03fddfa4.zip
utils: code style
Diffstat (limited to 'utils/encrypt_bmp.cpp')
-rw-r--r--utils/encrypt_bmp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/encrypt_bmp.cpp b/utils/encrypt_bmp.cpp
index 3ac5906..2dc3ea5 100644
--- a/utils/encrypt_bmp.cpp
+++ b/utils/encrypt_bmp.cpp
@@ -88,8 +88,8 @@ namespace
const auto algorithm = settings.get_algorithm();
const auto mode = settings.get_mode();
- const auto plaintext_path = settings.get_input_path();
- const auto ciphertext_path = settings.get_output_path();
+ const auto& plaintext_path = settings.get_input_path();
+ const auto& ciphertext_path = settings.get_output_path();
aesni::Box::Key key;
aesni::Box::parse_key(key, algorithm, settings.get_key_string());