diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-08-03 14:23:27 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-08-03 14:23:27 +0300 |
commit | 3d992e76ef7991cdff413ae58c07066f1a19a5d3 (patch) | |
tree | f91465ad2d09471a83508ff7356e88694738a4e7 /utils/encrypt_bmp.cpp | |
parent | cxx: more algorithm-agnostic API (diff) | |
download | aes-tools-3d992e76ef7991cdff413ae58c07066f1a19a5d3.tar.gz aes-tools-3d992e76ef7991cdff413ae58c07066f1a19a5d3.zip |
rename the utilities
Diffstat (limited to '')
-rw-r--r-- | utils/encrypt_bmp.cpp (renamed from utils/aes_encrypt_bmp.cpp) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/aes_encrypt_bmp.cpp b/utils/encrypt_bmp.cpp index 2615889..acdd893 100644 --- a/utils/aes_encrypt_bmp.cpp +++ b/utils/encrypt_bmp.cpp @@ -6,7 +6,7 @@ * See LICENSE.txt for details. */ -#include "aes_file_common.hpp" +#include "file_common.hpp" #include <aesni/all.h> @@ -173,7 +173,7 @@ int main(int argc, char** argv) { try { - CommandLineParser cmd_parser("aes_encrypt_bmp.exe"); + CommandLineParser cmd_parser("encrypt_bmp.exe"); if (!cmd_parser.parse_options(argc, argv)) return 0; |