summaryrefslogtreecommitdiffstats
path: root/apps/rsautl.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2016-02-18 12:23:27 -0500
committerRich Salz <rsalz@openssl.org>2016-02-18 12:24:44 -0500
commit9a13bb387d0e50a5dcb4f4324572687aea63b541 (patch)
tree0523a5586c63e33a6c939c363b39bbabc62a3a45 /apps/rsautl.c
parent6bc7bad011d98e38039105dc2624426917c0e587 (diff)
GH681: More command help cleanup
enc: - typo in -base64 option - missing help opt text ocsp, req, rsautl, s_client: - missing help opt text Signed-off-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'apps/rsautl.c')
-rw-r--r--apps/rsautl.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/rsautl.c b/apps/rsautl.c
index f3c90b77c6..f00c2e3ad6 100644
--- a/apps/rsautl.c
+++ b/apps/rsautl.c
@@ -98,10 +98,11 @@ OPTIONS rsautl_options[] = {
{"oaep", OPT_OAEP, '-', "Use PKCS#1 OAEP"},
{"sign", OPT_SIGN, '-', "Sign with private key"},
{"verify", OPT_VERIFY, '-', "Verify with public key"},
- {"asn1parse", OPT_ASN1PARSE, '-'},
+ {"asn1parse", OPT_ASN1PARSE, '-',
+ "Run output through asn1parse; useful with -verify"},
{"hexdump", OPT_HEXDUMP, '-', "Hex dump output"},
{"x931", OPT_X931, '-', "Use ANSI X9.31 padding"},
- {"rev", OPT_REV, '-'},
+ {"rev", OPT_REV, '-', "Reverse the order of the input buffer"},
{"encrypt", OPT_ENCRYPT, '-', "Encrypt with public key"},
{"decrypt", OPT_DECRYPT, '-', "Decrypt with private key"},
{"passin", OPT_PASSIN, 's', "Pass phrase source"},