From: Bernd Edlinger Date: Fri, 3 Mar 2017 07:57:44 +0000 (+0100) Subject: Add missing usage hints how to generate primes. X-Git-Tag: OpenSSL_1_0_2l~66 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f2d779931abd5cbfea249f8290c95b909562d7c7;p=openssl Add missing usage hints how to generate primes. Reviewed-by: Matt Caswell Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/2834) --- diff --git a/apps/prime.c b/apps/prime.c index 133167f2d4..d8f764a3d7 100644 --- a/apps/prime.c +++ b/apps/prime.c @@ -155,5 +155,8 @@ int MAIN(int argc, char **argv) BIO_printf(bio_err, "options are\n"); BIO_printf(bio_err, "%-14s hex\n", "-hex"); BIO_printf(bio_err, "%-14s number of checks\n", "-checks "); + BIO_printf(bio_err, "%-14s generate prime\n", "-generate"); + BIO_printf(bio_err, "%-14s number of bits\n", "-bits "); + BIO_printf(bio_err, "%-14s safe prime\n", "-safe"); return 1; }