[openssl-commits] [openssl] OpenSSL_1_1_0-stable update
Richard Levitte
levitte at openssl.org
Tue Sep 4 12:26:54 UTC 2018
The branch OpenSSL_1_1_0-stable has been updated
via 1018ba701368bdcdec7190bfcd2fb4076d0c1244 (commit)
from 019cb1ec5bb74cd1e6ec11b5ce1f1b50b0c9b2e2 (commit)
- Log -----------------------------------------------------------------
commit 1018ba701368bdcdec7190bfcd2fb4076d0c1244
Author: Richard Levitte <levitte at openssl.org>
Date: Mon Sep 3 13:17:03 2018 +0200
openssl req: don't try to report bits
With the introduction of -pkeyopt, the number of bits may change
without |newkey| being updated. Unfortunately, there is no API to
retrieve the information from a EVP_PKEY_CTX either, so chances are
that we report incorrect information. For the moment, it's better not
to try to report the number of bits at all.
Fixes #7086
Reviewed-by: Paul Yang <yang.yang at baishancloud.com>
Reviewed-by: Paul Dale <paul.dale at oracle.com>
(Merged from https://github.com/openssl/openssl/pull/7096)
(cherry picked from commit 17147181bd3f97c53592e2a5c9319b854b954039)
-----------------------------------------------------------------------
Summary of changes:
apps/req.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/apps/req.c b/apps/req.c
index 2a21569..a691f93 100644
--- a/apps/req.c
+++ b/apps/req.c
@@ -509,8 +509,7 @@ int req_main(int argc, char **argv)
if (pkey_type == EVP_PKEY_EC) {
BIO_printf(bio_err, "Generating an EC private key\n");
} else {
- BIO_printf(bio_err, "Generating a %ld bit %s private key\n",
- newkey, keyalgstr);
+ BIO_printf(bio_err, "Generating a %s private key\n", keyalgstr);
}
EVP_PKEY_CTX_set_cb(genctx, genpkey_cb);
More information about the openssl-commits
mailing list