summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2007-07-31 09:42:47 +0000
committerBodo Möller <bodo@openssl.org>2007-07-31 09:42:47 +0000
commitf7b61702a0bdb55bd0b95fe93296505b1022b798 (patch)
tree054e488c2334fde3558ad5391275bc642c00e511 /apps
parent983180bb8bbb669204a9b48b142ad5152d240300 (diff)
document -S and -nopad options in usage information
Diffstat (limited to 'apps')
-rw-r--r--apps/enc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/enc.c b/apps/enc.c
index a41ea800ac..38ee24eb17 100644
--- a/apps/enc.c
+++ b/apps/enc.c
@@ -283,9 +283,11 @@ bad:
BIO_printf(bio_err,"%-14s passphrase is the first line of the file argument\n","-kfile");
BIO_printf(bio_err,"%-14s the next argument is the md to use to create a key\n","-md");
BIO_printf(bio_err,"%-14s from a passphrase. One of md2, md5, sha or sha1\n","");
+ BIO_printf(bio_err,"%-14s salt in hex is the next argument\n","-S");
BIO_printf(bio_err,"%-14s key/iv in hex is the next argument\n","-K/-iv");
BIO_printf(bio_err,"%-14s print the iv/key (then exit if -P)\n","-[pP]");
BIO_printf(bio_err,"%-14s buffer size\n","-bufsize <n>");
+ BIO_printf(bio_err,"%-14s disable standard block padding\n","-nopad");
#ifndef OPENSSL_NO_ENGINE
BIO_printf(bio_err,"%-14s use engine e, possibly a hardware device.\n","-engine e");
#endif