summaryrefslogtreecommitdiffstats
path: root/apps/genrsa.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-10-12 12:40:15 +0100
committerMatt Caswell <matt@openssl.org>2015-10-12 22:31:00 +0100
commita0a82324f965bbcc4faed4e1ee3fcaf81ea52166 (patch)
treef7221e7b9d58b659c094aac39a6497c25938588e /apps/genrsa.c
parentd175e8a6c23ca212bf57ff78fdbca6942f3e0ef7 (diff)
Centralise loading default apps config file
Loading the config file after processing command line options can cause problems, e.g. where an engine provides new ciphers/digests these are not then recoginised on the command line. Move the default config file loading to before the command line option processing. Whilst we're doing this we might as well centralise this instead of doing it individually for each application. Finally if we do it before the OpenSSL_add_ssl_algorithms() call then ciphersuites provided by an engine (e.g. GOST) can be available to the apps. RT#4085 RT#4086 Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'apps/genrsa.c')
-rw-r--r--apps/genrsa.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/apps/genrsa.c b/apps/genrsa.c
index 54484b5273..b0e5e19b7e 100644
--- a/apps/genrsa.c
+++ b/apps/genrsa.c
@@ -169,9 +169,6 @@ int genrsa_main(int argc, char **argv)
goto end;
}
- if (!app_load_modules(NULL))
- goto end;
-
out = bio_open_owner(outfile, FORMAT_PEM, private);
if (out == NULL)
goto end;