summaryrefslogtreecommitdiffstats
path: root/apps/pkcs8.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2001-06-18 06:22:33 +0000
committerRichard Levitte <levitte@openssl.org>2001-06-18 06:22:33 +0000
commit531d630b5cfe0c50de122f0387a65473b4746bf8 (patch)
treef74f6b2b970014bb6496b9e3fa10a6f701eb936c /apps/pkcs8.c
parent853b1eb424bf60a8ddebdd01baa5af0cc6e204d4 (diff)
Provide an application-common setup function for engines and use it
everywhere.
Diffstat (limited to 'apps/pkcs8.c')
-rw-r--r--apps/pkcs8.c18
1 files changed, 1 insertions, 17 deletions
diff --git a/apps/pkcs8.c b/apps/pkcs8.c
index 852a435584..5e20a2be70 100644
--- a/apps/pkcs8.c
+++ b/apps/pkcs8.c
@@ -185,23 +185,7 @@ int MAIN(int argc, char **argv)
return (1);
}
- if (engine != NULL)
- {
- if((e = ENGINE_by_id(engine)) == NULL)
- {
- BIO_printf(bio_err,"invalid engine \"%s\"\n",
- engine);
- return (1);
- }
- if(!ENGINE_set_default(e, ENGINE_METHOD_ALL))
- {
- BIO_printf(bio_err,"can't use that engine\n");
- return (1);
- }
- BIO_printf(bio_err,"engine \"%s\" set.\n", engine);
- /* Free our "structural" reference. */
- ENGINE_free(e);
- }
+ e = setup_engine(bio_err, engine, 0);
if(!app_passwd(bio_err, passargin, passargout, &passin, &passout)) {
BIO_printf(bio_err, "Error getting passwords\n");