aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--test/README.md6
-rw-r--r--utils/README.md6
2 files changed, 6 insertions, 6 deletions
diff --git a/test/README.md b/test/README.md
index 08f4def..5327f73 100644
--- a/test/README.md
+++ b/test/README.md
@@ -17,7 +17,7 @@ Manual testing
You can validate the implementation manually using the block
encryption/decryption utilities `encrypt_block` and `decrypt_block`.
-Pass the `--help` flag to examine the utility's usage info.
+Pass the `--help` flag to an utility to examine its detailed usage information.
```
> encrypt_block -a aes128 -m ecb -- 000102030405060708090a0b0c0d0e0f 00112233445566778899aabbccddeeff
@@ -55,12 +55,12 @@ You must therefore make sure that
To pass the path of the directory with the required utilities, use the `--path`
parameter.
To allow the utilities to run on older CPUs, pass the `--sde` flag.
-Pass the `--help` flag to examine the script's usage info.
+Pass the `--help` flag to a script to examine its detailed usage information.
### Prerequisites
To run the test scripts, Python 3.4 or higher is required.
-Python 3.5.1 has been verified to work properly.
+CPython 3.5.1 has been verified to work properly.
### NIST Special Publication 800-38A
diff --git a/utils/README.md b/utils/README.md
index 1f380ef..c4d9da8 100644
--- a/utils/README.md
+++ b/utils/README.md
@@ -3,7 +3,7 @@ Utilities
A couple of useful utilities are built on top of the library.
Each of the utilities accepts the `--help` flag, which can be used to examine
-the utility's usage info.
+utility's detailed usage information.
Block encryption
----------------
@@ -141,12 +141,12 @@ Plaintext BMP | Encrypted in ECB mode | Encrypted in CBC mode
### encrypt_bmp
Encrypts the pixels in a BMP image file, preserving the header.
-The usage is the same as for [encrypt_file](#encrypt_file).
+Otherwise, it's used the same way [encrypt_file](#encrypt_file) is.
### decrypt_bmp
Decrypts the pixels in a BMP image file, preserving the header.
-The usage is the same as for [decrypt_file](#decrypt_file).
+Otherwise, it's used the same way [decrypt_file](#decrypt_file) is.
See also
--------