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 2264926..dd95928 100644 --- a/utils/decrypt_file.cpp +++ b/utils/decrypt_file.cpp @@ -73,8 +73,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()); |