From f2d779931abd5cbfea249f8290c95b909562d7c7 Mon Sep 17 00:00:00 2001 From: Bernd Edlinger Date: Fri, 3 Mar 2017 08:57:44 +0100 Subject: [PATCH] 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) --- apps/prime.c | 3 +++ 1 file changed, 3 insertions(+) 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; } -- 2.40.0