Add Rijndael as things to look through.
[oweals/openssl.git] / apps / apps.h
index e8272a39738c640f29bb8ca64c9bbdf674871d63..11133cb1d290f8af1856db6802eaaa1a3a2bff72 100644 (file)
@@ -122,14 +122,16 @@ extern BIO *bio_err;
 #    ifdef _O_BINARY
 #      define apps_startup() \
                _fmode=_O_BINARY; do_pipe_sig(); CRYPTO_malloc_init(); \
-               SSLeay_add_all_algorithms()
+               SSLeay_add_all_algorithms(); ENGINE_load_builtin_engines()
 #    else
 #      define apps_startup() \
                _fmode=O_BINARY; do_pipe_sig(); CRYPTO_malloc_init(); \
-               SSLeay_add_all_algorithms()
+               SSLeay_add_all_algorithms(); ENGINE_load_builtin_engines()
 #    endif
 #  else
-#    define apps_startup()     do_pipe_sig(); SSLeay_add_all_algorithms();
+#    define apps_startup() \
+               do_pipe_sig(); SSLeay_add_all_algorithms(); \
+               ENGINE_load_builtin_engines()
 #  endif
 #endif