diff options
author | Rich Salz <rsalz@akamai.com> | 2019-09-19 21:33:17 -0400 |
---|---|---|
committer | Tomas Mraz <tmraz@fedoraproject.org> | 2019-11-20 09:49:52 +0100 |
commit | 92de469fbd62a77a36dad5fde3a0ac7034071a59 (patch) | |
tree | bd2dfc3fc90d85af938a0e837813f66c5d3fa16c /apps/genrsa.c | |
parent | 1838580037a47b42c5b2326b0b988c50c7c64c3c (diff) | |
download | openssl-new-92de469fbd62a77a36dad5fde3a0ac7034071a59.tar.gz |
Document command parameters.
Add documentation for all commands that have parameters.
Fix a couple of minor doc and programming bugs, too.
Fixes #10313
Reviewed-by: Paul Dale <paul.dale@oracle.com>
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/10371)
Diffstat (limited to 'apps/genrsa.c')
-rw-r--r-- | apps/genrsa.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/genrsa.c b/apps/genrsa.c index fe57547f33..96fb23aaf5 100644 --- a/apps/genrsa.c +++ b/apps/genrsa.c @@ -42,6 +42,7 @@ typedef enum OPTION_choice { } OPTION_CHOICE; const OPTIONS genrsa_options[] = { + {OPT_HELP_STR, 1, '-', "Usage: %s [options] numbits\n"}, OPT_SECTION("General"), {"help", OPT_HELP, '-', "Display this summary"}, @@ -62,6 +63,9 @@ const OPTIONS genrsa_options[] = { {"", OPT_CIPHER, '-', "Encrypt the output with any supported cipher"}, OPT_R_OPTIONS, + + OPT_PARAMETERS(), + {"numbits", 0, 0, "Size of key in bits"}, {NULL} }; |