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