diff options
Diffstat (limited to '')
-rw-r--r-- | utils/encrypt_file.cpp (renamed from utils/aes_encrypt_file.cpp) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/aes_encrypt_file.cpp b/utils/encrypt_file.cpp index 61b9ba1..5747536 100644 --- a/utils/aes_encrypt_file.cpp +++ b/utils/encrypt_file.cpp @@ -6,7 +6,7 @@ * See LICENSE.txt for details. */ -#include "aes_file_common.hpp" +#include "file_common.hpp" #include <aesni/all.h> @@ -164,7 +164,7 @@ int main(int argc, char** argv) { try { - CommandLineParser cmd_parser("aes_encrypt_file.exe"); + CommandLineParser cmd_parser("encrypt_file.exe"); if (!cmd_parser.parse_options(argc, argv)) return 0; |