From: Richard Levitte Date: Mon, 4 May 2015 15:33:34 +0000 (+0200) Subject: Have -K actually take an argument, and correct help text X-Git-Tag: OpenSSL_1_1_0-pre1~1203 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b256f717f8ea001a03538044d4b0d259cb38d278;p=openssl Have -K actually take an argument, and correct help text Reviewed-by: Rich Salz --- 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"},