diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-10 03:40:16 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-10 03:40:16 +0300 |
commit | c963611e2c31bd04d629784bb6c39f730a7098d1 (patch) | |
tree | 8962815f686fb00ec0b9e4c7cf6dfbcd68ac586b /utils | |
parent | add file encryption utils for AES-128-ECB (diff) | |
download | aes-tools-c963611e2c31bd04d629784bb6c39f730a7098d1.tar.gz aes-tools-c963611e2c31bd04d629784bb6c39f730a7098d1.zip |
utils: usage message update
Diffstat (limited to '')
-rw-r--r-- | utils/aes128ecb_decrypt_file.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/aes128ecb_decrypt_file.cpp b/utils/aes128ecb_decrypt_file.cpp index a6757d4..42432bb 100644 --- a/utils/aes128ecb_decrypt_file.cpp +++ b/utils/aes128ecb_decrypt_file.cpp @@ -22,7 +22,7 @@ namespace { void exit_with_usage() { - std::cout << "Usage: aes128ecb_encrypt_file.exe KEY SRC DEST\n"; + std::cout << "Usage: aes128ecb_decrypt_file.exe KEY SRC DEST\n"; std::exit(EXIT_FAILURE); } |