summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2015-05-04 17:33:34 +0200
committerRichard Levitte <levitte@openssl.org>2015-05-04 20:15:54 +0200
commitb256f717f8ea001a03538044d4b0d259cb38d278 (patch)
treece74c87557b3e5ca5a07e214ceb31d51cbcbcfeb /apps
parent23b0fa5ab6b6b9f0a9350e24ac5ddb8275802617 (diff)
Have -K actually take an argument, and correct help text
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'apps')
-rw-r--r--apps/enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/enc.c b/apps/enc.c
index 8b892cfea9..ce5bbab6ce 100644
--- a/apps/enc.c
+++ b/apps/enc.c
@@ -113,7 +113,7 @@ OPTIONS enc_options[] = {
{"bufsize", OPT_BUFSIZE, 's', "Buffer size"},
{"k", OPT_K, 's', "Passphrase"},
{"kfile", OPT_KFILE, '<', "Fead passphrase from file"},
- {"K", OPT_UPPER_K, '-', "Same as -iv"},
+ {"K", OPT_UPPER_K, 's', "Raw key, in hex"},
{"S", OPT_UPPER_S, 's', "Salt, in hex"},
{"iv", OPT_IV, 's', "IV in hex"},
{"md", OPT_MD, 's', "Use specified digest to create key from passphrase"},