Use defaults bits in req when not given
authorKurt Roeckx <kurt@roeckx.be>
Mon, 23 Dec 2013 18:45:26 +0000 (19:45 +0100)
committerDr. Stephen Henson <steve@openssl.org>
Fri, 14 Feb 2014 22:36:05 +0000 (22:36 +0000)
commitd43301b77a664f34103ca617f0b25fc902d59d0c
tree97e037815d44f5bf6436a081b002f9d268842ede
parent4727d57400ce414c46c6921d832264aaedcc2c9e
Use defaults bits in req when not given

If you use "-newkey rsa" it's supposed to read the default number of bits from the
config file.  However the value isn't used to generate the key, but it does
print it's generating such a key.  The set_keygen_ctx() doesn't call
EVP_PKEY_CTX_set_rsa_keygen_bits() and you end up with the default set in
pkey_rsa_init() (1024).  Afterwards the number of bits gets read from the config
file, but nothing is done with that anymore.

We now read the config first and use the value from the config file when no size
is given.

PR: 2592
(cherry picked from commit 3343220327664680420d4068e1fbe46d2236f1b0)
apps/req.c