aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils/README.md
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-12-28 00:58:55 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-12-28 00:58:55 +0300
commit756b871925988f2b787e994dbb07077075593d15 (patch)
tree22a369afacc4a7a1022e5d832ffb51df41673cba /utils/README.md
parentutils: refactor command line parsing (diff)
downloadaes-tools-756b871925988f2b787e994dbb07077075593d15.tar.gz
aes-tools-756b871925988f2b787e994dbb07077075593d15.zip
utils: README update
Diffstat (limited to '')
-rw-r--r--utils/README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/utils/README.md b/utils/README.md
index d07d559..8055d87 100644
--- a/utils/README.md
+++ b/utils/README.md
@@ -20,7 +20,7 @@ including round keys, intermediate initialization vector values, etc.
This is primarily intended for debugging purposes.
Enable verbose output by passing the `--verbose` flag to the utilities.
Please note that verbose output can only be produced when *not* using "boxes"
-(the `--boxes` flag).
+(the `--box` flag).
### encrypt_block.exe
@@ -95,7 +95,7 @@ For example, to encrypt the plaintext `input.txt`
run:
- encrypt_file.exe -a aes128 -m ecb 11111111111111111111111111111111 input.txt output.txt
+ encrypt_file.exe -a aes128 -m ecb -k 11111111111111111111111111111111 -i input.txt -o output.txt
To encrypt the plaintext from `input.txt`
@@ -106,7 +106,7 @@ To encrypt the plaintext from `input.txt`
run
- encrypt_file.exe -a aes192 -m ofb 111111111111111111111111111111111111111111111111 22222222222222222222222222222222 input.txt output.txt
+ encrypt_file.exe -a aes192 -m ofb -k 111111111111111111111111111111111111111111111111 -v 22222222222222222222222222222222 -i input.txt -o output.txt
### decrypt_file.exe
@@ -123,7 +123,7 @@ To decrypt the ciphertext from `input.txt`
run
- decrypt_file.exe -a aes128 -m ecb 11111111111111111111111111111111 input.txt output.txt
+ decrypt_file.exe -a aes128 -m ecb -k 11111111111111111111111111111111 -i input.txt -o output.txt
To decrypt the ciphertext from `input.txt`
@@ -134,7 +134,7 @@ To decrypt the ciphertext from `input.txt`
run
- decrypt_file.exe -a aes192 -m ofb 111111111111111111111111111111111111111111111111 22222222222222222222222222222222 input.txt output.txt
+ decrypt_file.exe -a aes192 -m ofb -k 111111111111111111111111111111111111111111111111 -v 22222222222222222222222222222222 -i input.txt -o output.txt
## Bitmap encryption