[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Richard Levitte
levitte at openssl.org
Fri Mar 3 09:58:55 UTC 2017
The branch OpenSSL_1_0_2-stable has been updated
via f2d779931abd5cbfea249f8290c95b909562d7c7 (commit)
from e8e45ed49ed6f2e23f9cf5d6e2e6e1e745308b94 (commit)
- Log -----------------------------------------------------------------
commit f2d779931abd5cbfea249f8290c95b909562d7c7
Author: Bernd Edlinger <bernd.edlinger at hotmail.de>
Date: Fri Mar 3 08:57:44 2017 +0100
Add missing usage hints how to generate primes.
Reviewed-by: Matt Caswell <matt at openssl.org>
Reviewed-by: Richard Levitte <levitte at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2834)
-----------------------------------------------------------------------
Summary of changes:
apps/prime.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/apps/prime.c b/apps/prime.c
index 133167f..d8f764a 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 <n>");
+ BIO_printf(bio_err, "%-14s generate prime\n", "-generate");
+ BIO_printf(bio_err, "%-14s number of bits\n", "-bits <n>");
+ BIO_printf(bio_err, "%-14s safe prime\n", "-safe");
return 1;
}
More information about the openssl-commits
mailing list