diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-12-28 19:56:30 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-12-28 19:56:30 +0300 |
commit | 62b933b4402387379bd26a2d18ad3ded03fddfa4 (patch) | |
tree | d4747a4610d1448f964374d405946548f08857bf /utils/decrypt_bmp.cpp | |
parent | utils: code style (diff) | |
download | aes-tools-62b933b4402387379bd26a2d18ad3ded03fddfa4.tar.gz aes-tools-62b933b4402387379bd26a2d18ad3ded03fddfa4.zip |
utils: code style
Diffstat (limited to 'utils/decrypt_bmp.cpp')
-rw-r--r-- | utils/decrypt_bmp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/decrypt_bmp.cpp b/utils/decrypt_bmp.cpp index e63155d..dac042a 100644 --- a/utils/decrypt_bmp.cpp +++ b/utils/decrypt_bmp.cpp @@ -88,8 +88,8 @@ namespace const auto algorithm = settings.get_algorithm(); const auto mode = settings.get_mode(); - const auto ciphertext_path = settings.get_input_path(); - const auto plaintext_path = settings.get_output_path(); + const auto& ciphertext_path = settings.get_input_path(); + const auto& plaintext_path = settings.get_output_path(); aesni::Box::Key key; aesni::Box::parse_key(key, algorithm, settings.get_key_string()); |