]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - apps/engine.c
Change the engine library so the application writer has to explicitely
[thirdparty/openssl.git] / apps / engine.c
index 8abe04e808c90fd8291fb343cfc68ceea4720eba..ca5618b1a69c66619fd5824b4a912190a6e16bfc 100644 (file)
@@ -77,6 +77,7 @@ static char *engine_usage[]={
 " -c          - for each engine, also list the capabilities\n",
 #endif
 " -t          - for each engine, check that they are really available\n",
+" -l          - load all built-in engines\n",
 NULL
 };
 
@@ -152,6 +153,8 @@ int MAIN(int argc, char **argv)
                        list_cap=1;
                else if (strcmp(*argv,"-t") == 0)
                        test_avail=1;
+               else if (strcmp(*argv,"-l") == 0)
+                       ENGINE_load_builtin_engines();
                else if ((strncmp(*argv,"-h",2) == 0) ||
                         (strcmp(*argv,"-?") == 0))
                        {