diff options
author | FdaSilvaYY <fdasilvayy@gmail.com> | 2016-03-20 21:14:10 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2016-05-04 13:44:21 +0200 |
commit | 16e1b281b2e16ff6deb8ca431dfc5743de31d0e2 (patch) | |
tree | 34f343fc8f8c26b8cf409751752b5dde827999c2 /apps/ec.c | |
parent | Fix the no-tls option (diff) | |
download | openssl-16e1b281b2e16ff6deb8ca431dfc5743de31d0e2.tar.xz openssl-16e1b281b2e16ff6deb8ca431dfc5743de31d0e2.zip |
GH932: Add more help messages to some apps options.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'apps/ec.c')
-rw-r--r-- | apps/ec.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -99,8 +99,8 @@ OPTIONS ec_options[] = { {"noout", OPT_NOOUT, '-', "Don't print key out"}, {"text", OPT_TEXT, '-', "Print the key"}, {"param_out", OPT_PARAM_OUT, '-', "Print the elliptic curve parameters"}, - {"pubin", OPT_PUBIN, '-'}, - {"pubout", OPT_PUBOUT, '-'}, + {"pubin", OPT_PUBIN, '-', "Expect a public key in input file"}, + {"pubout", OPT_PUBOUT, '-', "Output public key, not private"}, {"no_public", OPT_NO_PUBLIC, '-', "exclude public key from private key"}, {"check", OPT_CHECK, '-', "check key consistency"}, {"passin", OPT_PASSIN, 's', "Input file pass phrase source"}, |